
    :root {
      --ink: #253044;
      --muted: #667085;
      --cream: #fbfaf7;
      --paper: #ffffff;
      --line: rgba(37, 48, 68, .12);
      --lilac: #ded8ff;
      --lilac-strong: #7567c9;
      --peach: #ffd9c9;
      --peach-strong: #ca6f58;
      --mint: #d7eee1;
      --mint-strong: #428565;
      --butter: #f7e8ac;
      --shadow: 0 24px 70px rgba(45, 50, 70, .10);
      --radius-xl: 36px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: var(--cream);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
      background:
        radial-gradient(circle at 5% 9%, rgba(222, 216, 255, .55), transparent 27%),
        radial-gradient(circle at 94% 18%, rgba(255, 217, 201, .45), transparent 25%),
        radial-gradient(circle at 48% 58%, rgba(215, 238, 225, .35), transparent 32%);
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    :focus-visible { outline: 3px solid var(--lilac-strong); outline-offset: 4px; }

    .container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .section-head { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: end; margin-bottom: 44px; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      margin: 0 0 18px;
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.62);
      color: #536074;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .11em;
      text-transform: uppercase;
    }
    .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--peach-strong); box-shadow: 0 0 0 5px rgba(202,111,88,.12); }
    h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.04em; }
    h1 { font-size: clamp(48px, 7.1vw, 88px); max-width: 860px; }
    h2 { font-size: clamp(39px, 5vw, 62px); }
    h3 { font-size: 24px; }
    p { margin: 0; }
    .lead { max-width: 690px; color: #566176; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }

    .mockup-note {
      position: fixed;
      z-index: 50;
      right: 16px;
      bottom: 16px;
      padding: 10px 14px;
      border: 1px solid rgba(37,48,68,.12);
      border-radius: 999px;
      background: rgba(255,255,255,.86);
      box-shadow: 0 10px 34px rgba(37,48,68,.12);
      backdrop-filter: blur(14px);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      padding: 16px 0;
      background: rgba(251,250,247,.78);
      border-bottom: 1px solid transparent;
      backdrop-filter: blur(18px);
    }
    .nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
    .brand { display: flex; align-items: center; gap: 12px; min-width: 220px; }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: var(--ink);
      color: white;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: -.02em;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
    }
    .brand-copy { display: grid; line-height: 1.18; }
    .brand-copy strong { font-size: 14px; }
    .brand-copy span { color: var(--muted); font-size: 11px; }
    .nav-links { display: flex; align-items: center; gap: 6px; }
    .nav-links > a { padding: 10px 13px; border-radius: 12px; color: #4e596c; font-size: 14px; font-weight: 650; }
    .nav-links > a:hover { background: white; color: var(--ink); }
    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-left: 8px;
      padding: 12px 17px !important;
      border-radius: 14px !important;
      background: var(--ink) !important;
      color: white !important;
      box-shadow: 0 10px 24px rgba(37,48,68,.16);
    }
    .nav-cta svg { width: 16px; }
    .menu-button { display: none; width: 44px; height: 44px; border: 0; border-radius: 13px; background: var(--paper); color: var(--ink); }

    .hero { padding: 72px 0 44px; overflow: hidden; }
    .hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 58px; align-items: center; }
    .hero h1 span { position: relative; display: inline-block; z-index: 0; }
    .hero h1 span::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -2%;
      right: -2%;
      bottom: 5%;
      height: 24%;
      border-radius: 99px;
      background: var(--butter);
      transform: rotate(-1.5deg);
    }
    .hero .lead { margin-top: 25px; max-width: 660px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 16px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .button:hover { transform: translateY(-2px); }
    .button-primary { background: var(--ink); color: white; box-shadow: 0 14px 30px rgba(37,48,68,.18); }
    .button-secondary { border-color: var(--line); background: rgba(255,255,255,.68); color: var(--ink) !important; }
    .button svg { width: 18px; height: 18px; }
    .hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 33px; color: #687386; font-size: 13px; font-weight: 700; }
    .hero-trust span { display: flex; align-items: center; gap: 8px; }
    .hero-trust i { display: grid; place-items: center; width: 21px; height: 21px; border-radius: 50%; background: var(--mint); color: var(--mint-strong); font-style: normal; font-size: 12px; }

    .hero-visual { position: relative; min-height: 590px; }
    .visual-orbit { position: absolute; width: 510px; height: 510px; right: -54px; top: 15px; border-radius: 50%; border: 1px solid rgba(37,48,68,.08); }
    .visual-orbit::before, .visual-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(37,48,68,.07); }
    .visual-orbit::before { inset: 55px; }
    .visual-orbit::after { inset: 112px; }
    .browser-card {
      position: absolute;
      z-index: 2;
      top: 34px;
      right: 12px;
      width: 430px;
      padding: 12px;
      border: 1px solid rgba(37,48,68,.12);
      border-radius: 29px;
      background: rgba(255,255,255,.76);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
      transform: rotate(2deg);
    }
    .browser-top { display: flex; align-items: center; gap: 6px; height: 32px; padding: 0 4px; }
    .browser-top i { width: 8px; height: 8px; border-radius: 50%; background: #dbd6cf; }
    .browser-screen { min-height: 430px; padding: 32px; border-radius: 20px; background: #29344a; color: white; overflow: hidden; position: relative; }
    .browser-screen::after { content: ""; position: absolute; width: 210px; height: 210px; right: -90px; bottom: -100px; border-radius: 50%; background: var(--lilac); opacity: .14; }
    .mini-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 66px; }
    .mini-logo { font-size: 11px; font-weight: 900; }
    .mini-lines { display: flex; gap: 6px; }
    .mini-lines span { display: block; width: 24px; height: 3px; border-radius: 9px; background: rgba(255,255,255,.35); }
    .mini-kicker { color: var(--peach); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
    .mini-title { margin: 12px 0 16px; font-size: 40px; font-weight: 850; line-height: 1.02; letter-spacing: -.055em; }
    .mini-copy { max-width: 280px; color: rgba(255,255,255,.64); font-size: 12px; }
    .mini-button { display: inline-flex; margin-top: 24px; padding: 10px 14px; border-radius: 10px; background: var(--peach); color: #4f2d29; font-size: 10px; font-weight: 900; }
    .floating-card {
      position: absolute;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 15px 17px;
      border: 1px solid rgba(37,48,68,.1);
      border-radius: 18px;
      background: rgba(255,255,255,.88);
      box-shadow: 0 18px 42px rgba(52,54,73,.13);
      backdrop-filter: blur(14px);
    }
    .floating-card strong { display: block; font-size: 14px; }
    .floating-card small { display: block; color: var(--muted); font-size: 11px; }
    .float-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; }
    .float-icon svg { width: 19px; }
    .float-one { left: -14px; top: 130px; transform: rotate(-4deg); }
    .float-one .float-icon { background: var(--mint); color: var(--mint-strong); }
    .float-two { right: 0; bottom: 55px; transform: rotate(3deg); }
    .float-two .float-icon { background: var(--peach); color: var(--peach-strong); }
    .float-three { left: 48px; bottom: 13px; transform: rotate(-2deg); }
    .float-three .float-icon { background: var(--lilac); color: var(--lilac-strong); }

    .proof { padding: 20px 0 38px; }
    .proof-inner { display: grid; grid-template-columns: 1.2fr repeat(3, .75fr); align-items: center; gap: 28px; padding: 28px 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.63); }
    .proof-copy { font-size: 14px; font-weight: 800; }
    .proof-stat { padding-left: 28px; border-left: 1px solid var(--line); }
    .proof-stat strong { display: block; font-size: 25px; line-height: 1.15; letter-spacing: -.04em; }
    .proof-stat span { color: var(--muted); font-size: 12px; }

    .services-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; }
    .service-card { position: relative; min-height: 340px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
    .service-card:first-child { background: var(--lilac); }
    .service-card:nth-child(2) { background: var(--mint); }
    .service-card:nth-child(3) { background: var(--peach); }
    .service-index { display: inline-flex; margin-bottom: 70px; color: rgba(37,48,68,.55); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
    .service-card h3 { max-width: 260px; font-size: 29px; }
    .service-card p { margin-top: 14px; max-width: 310px; color: #566176; font-size: 14px; }
    .service-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 13px; font-weight: 900; }
    .service-link svg { width: 16px; }
    .service-shape { position: absolute; right: -35px; top: -35px; width: 150px; height: 150px; border: 1px solid rgba(37,48,68,.11); border-radius: 45px; transform: rotate(22deg); }

    .projects {
      color: var(--ink);
      background: linear-gradient(135deg, #f0ecff 0%, #f7f5ff 50%, #eaf5ef 100%);
    }
    .projects .eyebrow { color: #655a9e; background: rgba(255,255,255,.7); border-color: rgba(117,103,201,.18); }
    .projects .section-head p { color: #657084; }
    .projects-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
    .project-card { position: relative; padding: 14px; border: 1px solid rgba(37,48,68,.1); border-radius: 30px; background: rgba(255,255,255,.7); box-shadow: 0 20px 50px rgba(74,69,112,.08); overflow: hidden; }
    .project-card:first-child { grid-row: span 2; }
    .project-media { position: relative; overflow: hidden; border-radius: 20px; background: white; }
    .project-card:first-child .project-media { height: 430px; }
    .project-card:not(:first-child) { display: grid; grid-template-columns: .92fr 1.08fr; gap: 18px; align-items: center; }
    .project-card:not(:first-child) .project-media { height: 235px; }
    .project-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .45s ease; }
    .project-card:hover img { transform: scale(1.035); }
    .project-content { padding: 26px 16px 18px; }
    .project-card:not(:first-child) .project-content { padding: 20px 16px 20px 0; }
    .project-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 15px; }
    .tag { display: inline-flex; padding: 6px 10px; border-radius: 999px; background: rgba(117,103,201,.12); color: #5f5596; font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
    .project-card h3 { max-width: 460px; color: var(--ink); font-size: 27px; }
    .project-card p { margin-top: 12px; color: #667085; font-size: 13px; }
    .project-arrow { position: absolute; right: 24px; top: 24px; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(37,48,68,.08); border-radius: 14px; background: rgba(255,255,255,.94); color: var(--ink); box-shadow: 0 10px 24px rgba(74,69,112,.1); }
    .project-arrow svg { width: 18px; }

    .process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: start; }
    .process-intro { position: sticky; top: 110px; }
    .process-intro .lead { margin-top: 22px; }
    .steps { display: grid; }
    .step { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid var(--line); }
    .step:first-child { padding-top: 0; }
    .step-num { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: var(--paper); border: 1px solid var(--line); font-weight: 900; }
    .step:nth-child(2) .step-num { background: var(--lilac); }
    .step:nth-child(3) .step-num { background: var(--peach); }
    .step:nth-child(4) .step-num { background: var(--mint); }
    .step h3 { font-size: 22px; }
    .step p { margin-top: 9px; color: var(--muted); font-size: 14px; }

    .about-card { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 520px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.72); overflow: hidden; box-shadow: 0 26px 65px rgba(47,52,70,.06); }
    .about-visual { position: relative; display: grid; place-items: center; min-height: 420px; background: var(--butter); overflow: hidden; }
    .about-visual::before { content: ""; position: absolute; width: 360px; height: 360px; border: 1px solid rgba(37,48,68,.1); border-radius: 50%; }
    .about-visual::after { content: ""; position: absolute; width: 260px; height: 260px; border: 1px solid rgba(37,48,68,.1); border-radius: 50%; }
    .portrait-mark { position: relative; z-index: 2; display: grid; place-items: center; width: 210px; height: 250px; border-radius: 105px 105px 48px 48px; background: #29344a; color: white; font-size: 82px; font-weight: 850; letter-spacing: -.08em; box-shadow: 18px 20px 0 rgba(255,255,255,.55); }
    .about-content { display: flex; flex-direction: column; justify-content: center; padding: 68px; }
    .about-content .lead { margin-top: 22px; }
    .skills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
    .skill { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--cream); color: #596477; font-size: 12px; font-weight: 800; }

    .journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .article-card { display: flex; flex-direction: column; min-height: 320px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.65); }
    .article-card:nth-child(2) { background: rgba(222,216,255,.46); }
    .article-card:nth-child(3) { background: rgba(215,238,225,.56); }
    .article-date { color: var(--muted); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
    .article-card h3 { margin-top: 46px; font-size: 25px; }
    .article-card p { margin-top: 14px; color: var(--muted); font-size: 14px; }
    .article-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 30px; font-size: 13px; font-weight: 900; }
    .article-link svg { width: 16px; }

    .contact-wrap { padding: 20px 0 100px; }
    .contact-card { position: relative; overflow: hidden; padding: 74px; border-radius: var(--radius-xl); background: var(--lilac); }
    .contact-card::before, .contact-card::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(37,48,68,.11); }
    .contact-card::before { width: 360px; height: 360px; right: -80px; top: -190px; }
    .contact-card::after { width: 240px; height: 240px; right: 30px; top: -125px; }
    .contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; }
    .contact-card h2 { max-width: 680px; }
    .contact-card p { margin-top: 20px; max-width: 600px; color: #5b5e75; font-size: 18px; }
    .contact-actions { display: grid; gap: 12px; }
    .contact-actions .button { width: 100%; }
    .availability { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 2px; color: #585d73; font-size: 12px; font-weight: 750; }
    .availability i { width: 8px; height: 8px; border-radius: 50%; background: #4e9670; box-shadow: 0 0 0 5px rgba(78,150,112,.12); }

    footer { padding: 34px 0 44px; border-top: 1px solid var(--line); }
    .footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 26px; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 12px; font-weight: 700; }

    @media (max-width: 1050px) {
      .nav-links > a:not(.nav-cta) { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-copy { max-width: 820px; }
      .hero-visual { width: min(100%, 620px); margin: 0 auto; }
      .proof-inner { grid-template-columns: 1fr repeat(3, .7fr); }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .service-card:first-child { grid-column: span 2; }
      .projects-grid { grid-template-columns: 1fr; }
      .project-card:first-child { grid-row: auto; }
      .project-card:not(:first-child) { grid-template-columns: .8fr 1.2fr; }
      .about-content { padding: 48px; }
    }

    @media (max-width: 760px) {
      .container { width: min(calc(100% - 28px), var(--max)); }
      .section { padding: 78px 0; }
      .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
      .site-header { padding: 11px 0; }
      .brand { min-width: auto; }
      .nav-links { display: none; position: absolute; left: 14px; right: 14px; top: 72px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); }
      .nav-links.is-open { display: grid; }
      .nav-links > a:not(.nav-cta) { display: block; }
      .nav-cta { margin-left: 0; justify-content: center; }
      .menu-button { display: grid; place-items: center; }
      .hero { padding-top: 46px; }
      .hero-grid { gap: 18px; }
      .hero .lead { font-size: 17px; }
      .hero-actions { display: grid; }
      .button { width: 100%; }
      .hero-visual { min-height: 500px; transform: scale(.92); transform-origin: top center; margin-bottom: -25px; }
      .browser-card { width: min(400px, 92vw); right: 50%; transform: translateX(50%) rotate(1deg); }
      .browser-screen { min-height: 385px; padding: 27px; }
      .mini-title { font-size: 35px; }
      .visual-orbit { right: 50%; transform: translateX(50%); }
      .float-one { left: 0; top: 95px; }
      .float-two { right: -2px; bottom: 50px; }
      .float-three { display: none; }
      .proof-inner { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
      .proof-stat { padding: 14px 0 0; border-left: 0; border-top: 1px solid var(--line); }
      .services-grid { grid-template-columns: 1fr; }
      .service-card:first-child { grid-column: auto; }
      .service-card { min-height: 300px; }
      .service-index { margin-bottom: 48px; }
      .project-card:first-child .project-media { height: 280px; }
      .project-card:not(:first-child) { grid-template-columns: 1fr; }
      .project-card:not(:first-child) .project-content { padding: 10px 16px 18px; }
      .process-grid { grid-template-columns: 1fr; gap: 42px; }
      .process-intro { position: static; }
      .step { grid-template-columns: 52px 1fr; gap: 16px; }
      .about-card { grid-template-columns: 1fr; }
      .about-visual { min-height: 370px; }
      .about-content { padding: 42px 26px; }
      .journal-grid { grid-template-columns: 1fr; }
      .article-card { min-height: 275px; }
      .contact-card { padding: 46px 26px; }
      .contact-grid { grid-template-columns: 1fr; gap: 34px; }
      .contact-card p { font-size: 16px; }
      .footer-grid { align-items: flex-start; flex-direction: column; }
      .mockup-note { right: 10px; bottom: 10px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { transition-duration: .01ms !important; }
    }
  

    /* Intégration WordPress de la maquette validée */
    .home > .ab-nav,
    .home > .ab-footer,
    .home .site-footer,
    .home .entry-header { display: none !important; }
    .home #page,
    .home .site-content,
    .home .site-content .ast-container,
    .home .content-area,
    .home .site-main,
    .home article.page,
    .home .entry-content {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    .home .site-content .ast-container { display: block !important; }
    .home .entry-content > * { max-width: none !important; }
    .home .site-content { background: transparent !important; }
    .home .ast-container { padding-left: 0 !important; padding-right: 0 !important; }
    .home .entry-content h1 {
      margin: 0;
      max-width: 860px;
      color: var(--ink);
      font-size: clamp(48px, 7.1vw, 88px);
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .home .entry-content h2 {
      margin: 0;
      font-size: clamp(39px, 5vw, 62px);
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .home .entry-content h3 {
      margin: 0;
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: -.04em;
    }
    .home .entry-content p { margin: 0; }
    .home .entry-content a { text-decoration: none !important; }
    .home .entry-content .button-primary { color: #fff !important; }
    .home .entry-content .button-secondary { color: var(--ink) !important; }
    .menu-button::before { content: "☰"; font-size: 20px; line-height: 1; }
    .nav-cta::after,
    .hero-actions .button-primary::after,
    .service-link::after,
    .article-link::after,
    .contact-actions .button-primary::after { content: "→"; }
    .project-arrow::before { content: "↗"; font-size: 20px; }
    .float-one .float-icon::before { content: "↗"; }
    .float-two .float-icon::before { content: "◎"; }
    .float-three .float-icon::before { content: "+"; font-size: 22px; }

    /* Pages éditoriales : index et articles */
    .page-id-59 .entry-header,
    .single-post .entry-header,
    .page-id-59 #masthead,
    .single-post #masthead,
    .page-id-59 .site-footer,
    .single-post .site-footer { display: none !important; }
    .page-id-59 .site-content,
    .single-post .site-content { background: var(--cream) !important; }
    .page-id-59 .site-content .ast-container,
    .single-post .site-content .ast-container {
      display: block !important;
      width: 100% !important;
      max-width: none !important;
      padding: 0 !important;
    }
    .page-id-59 .content-area,
    .single-post .content-area,
    .page-id-59 .site-main,
    .single-post .site-main,
    .page-id-59 article.page,
    .single-post article.post,
    .page-id-59 .entry-content,
    .single-post .entry-content {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    .single-post #secondary { display: none !important; }
    .single-post .post-navigation .nav-links {
      position: static !important;
      display: flex !important;
      justify-content: space-between;
      width: auto !important;
      margin: 0 !important;
      padding: 24px 20px !important;
      border: 0 !important;
      border-top: 1px solid var(--line) !important;
      border-radius: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
    }
    .page-id-59 .entry-content > *,
    .single-post .entry-content > * { max-width: none !important; }
    .page-id-59 .entry-content a,
    .single-post .entry-content a { text-decoration: none; }

    .ab-editorial,
    .ab-articles-index { padding: 64px 0 110px; }
    .ab-editorial-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
    .ab-breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 60px; color: var(--muted); font-size: 12px; font-weight: 750; }
    .ab-breadcrumb a:hover { color: var(--lilac-strong); }
    .ab-editorial-header,
    .ab-index-header { max-width: 930px; }
    .ab-editorial-header h1,
    .ab-index-header h1 {
      margin: 0;
      color: var(--ink);
      font-size: clamp(46px, 6.4vw, 78px);
      line-height: 1.04;
      letter-spacing: -.055em;
    }
    .ab-editorial-intro { margin-top: 26px !important; max-width: 800px; color: #566176; font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
    .ab-editorial-meta { margin-top: 22px !important; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
    .ab-editorial-hero { margin: 54px 0 68px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.72); box-shadow: var(--shadow); overflow: hidden; }
    .ab-editorial-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 26px; }
    .ab-editorial-layout { display: grid; grid-template-columns: 210px minmax(0, 780px); justify-content: center; gap: 76px; align-items: start; }
    .ab-toc { position: sticky; top: 110px; display: grid; gap: 11px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.68); }
    .ab-toc strong { margin-bottom: 5px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
    .ab-toc a { color: var(--muted); font-size: 13px; line-height: 1.35; }
    .ab-toc a:hover { color: var(--lilac-strong); }
    .ab-editorial-body { color: #3f4b60; font-size: 17px; line-height: 1.82; }
    .ab-editorial-body p { margin: 0 0 24px; }
    .ab-editorial-body a:not(.button) { color: #6558b0; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
    .ab-editorial-body h2 { margin: 68px 0 22px; color: var(--ink); font-size: clamp(30px, 3.6vw, 44px); line-height: 1.12; letter-spacing: -.04em; scroll-margin-top: 110px; }
    .ab-editorial-body h3 { margin: 38px 0 16px; color: var(--ink); font-size: 23px; line-height: 1.25; letter-spacing: -.025em; }
    .ab-editorial-lead { margin-bottom: 42px !important; color: var(--ink); font-size: 21px; line-height: 1.65; }
    .ab-editorial-body code { padding: 3px 7px; border-radius: 7px; background: rgba(222,216,255,.5); color: #51498d; font-size: .88em; }
    .ab-check-list { display: grid; gap: 12px; margin: 20px 0 30px; padding: 0; list-style: none; }
    .ab-check-list li { position: relative; padding-left: 34px; }
    .ab-check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--mint); color: var(--mint-strong); font-size: 12px; font-weight: 900; }
    .ab-check-list-card { padding: 26px 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.7); }
    .ab-callout { margin: 34px 0; padding: 26px 28px; border-radius: var(--radius-lg); color: var(--ink); }
    .ab-callout strong { display: block; margin-bottom: 6px; font-size: 18px; }
    .ab-callout p { margin: 0; color: #566176; }
    .ab-callout-lilac { background: rgba(222,216,255,.68); }
    .ab-callout-mint { background: rgba(215,238,225,.75); }
    .ab-callout-peach { background: rgba(255,217,201,.72); }
    .ab-number-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 32px 0; }
    .ab-number-grid-three { grid-template-columns: repeat(3, 1fr); }
    .ab-number-grid > div { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.67); }
    .ab-number-grid span { display: block; margin-bottom: 25px; color: var(--peach-strong); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
    .ab-number-grid strong { display: block; color: var(--ink); font-size: 17px; }
    .ab-number-grid p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .ab-expert-box { margin-top: 76px; padding: 48px; border: 1px solid rgba(117,103,201,.14); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(222,216,255,.72), rgba(215,238,225,.7)); }
    .ab-expert-box h2 { margin: 0 0 18px; font-size: clamp(30px, 4vw, 48px); }
    .ab-expert-box p:not(.eyebrow) { max-width: 630px; }
    .ab-expert-box .button { margin-top: 10px; color: white; text-decoration: none; }
    .ab-sources { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; line-height: 1.65; }
    .ab-sources strong { display: block; margin-bottom: 5px; color: var(--ink); }
    .ab-sources p { margin: 0; }

    .ab-index-header { margin-bottom: 60px; }
    .ab-index-grid { display: grid; gap: 24px; }
    .ab-index-card { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 360px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(255,255,255,.7); box-shadow: 0 20px 54px rgba(47,52,70,.06); }
    .ab-index-card:nth-child(2) { background: rgba(222,216,255,.38); }
    .ab-index-card:nth-child(3) { background: rgba(215,238,225,.48); }
    .ab-index-media { overflow: hidden; }
    .ab-index-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .ab-index-card:hover .ab-index-media img { transform: scale(1.025); }
    .ab-index-card-body { display: flex; flex-direction: column; padding: 44px; }
    .ab-index-card h2 { margin: 30px 0 15px; color: var(--ink); font-size: clamp(28px, 3.2vw, 40px); line-height: 1.12; letter-spacing: -.04em; }
    .ab-index-card p { color: var(--muted); font-size: 15px; }
    .ab-index-card .article-link { margin-top: auto; padding-top: 26px; }
    .ab-index-cta { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 50px; margin-top: 70px; padding: 54px; border-radius: var(--radius-xl); background: var(--peach); }
    .ab-index-cta h2 { max-width: 720px; font-size: clamp(32px, 4.5vw, 52px); }
    .ab-index-cta p:not(.eyebrow) { margin-top: 16px; max-width: 680px; color: #5e6171; }
    .ab-index-cta .button { white-space: nowrap; color: white; }

    @media (max-width: 900px) {
      .ab-editorial-layout { grid-template-columns: 1fr; gap: 34px; }
      .ab-toc { position: static; grid-template-columns: repeat(2, 1fr); }
      .ab-toc strong { grid-column: 1 / -1; }
      .ab-index-card { grid-template-columns: 1fr; }
      .ab-index-media { aspect-ratio: 16 / 9; }
      .ab-index-cta { grid-template-columns: 1fr; }
      .ab-number-grid-three { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .ab-editorial,
      .ab-articles-index { padding: 38px 0 76px; }
      .ab-editorial-shell { width: min(calc(100% - 28px), var(--max)); }
      .ab-breadcrumb { margin-bottom: 38px; }
      .ab-editorial-header h1,
      .ab-index-header h1 { font-size: clamp(40px, 13vw, 56px); }
      .ab-editorial-hero { margin: 38px 0 48px; padding: 7px; border-radius: 24px; }
      .ab-editorial-hero img { border-radius: 18px; }
      .ab-toc { grid-template-columns: 1fr; }
      .ab-toc strong { grid-column: auto; }
      .ab-editorial-body { font-size: 16px; }
      .ab-editorial-lead { font-size: 19px; }
      .ab-editorial-body h2 { margin-top: 52px; }
      .ab-number-grid { grid-template-columns: 1fr; }
      .ab-check-list-card { padding: 22px 20px; }
      .ab-expert-box { padding: 34px 24px; }
      .ab-expert-box .button { width: 100%; }
      .ab-index-card-body { padding: 30px 24px; min-height: 340px; }
      .ab-index-cta { padding: 38px 24px; }
      .ab-index-cta .button { width: 100%; white-space: normal; text-align: center; }
    }

    /* Page Projets */
    .page-id-55 .entry-header,
    .page-id-55 #masthead,
    .page-id-55 .site-footer { display: none !important; }
    .page-id-55 .site-content { background: var(--cream) !important; }
    .page-id-55 .site-content .ast-container,
    .page-id-55 .content-area,
    .page-id-55 .site-main,
    .page-id-55 article.page,
    .page-id-55 .entry-content {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }
    .page-id-55 .site-content .ast-container { display: block !important; }
    .page-id-55 .entry-content > * { max-width: none !important; }
    .page-id-55 .entry-content a { text-decoration: none !important; }
    .page-id-55 .entry-content p { margin: 0; }

    .ab-work-hero { padding: 78px 0 88px; overflow: hidden; }
    .ab-work-hero__grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      align-items: center;
      gap: 70px;
    }
    .ab-work-hero h1 {
      margin: 0;
      max-width: 850px;
      color: var(--ink);
      font-size: clamp(48px, 7vw, 86px);
      line-height: 1.04;
      letter-spacing: -.055em;
    }
    .ab-work-hero h1 span { position: relative; display: inline-block; z-index: 0; }
    .ab-work-hero h1 span::after {
      content: "";
      position: absolute;
      z-index: -1;
      left: -2%;
      right: -2%;
      bottom: 4%;
      height: 25%;
      border-radius: 99px;
      background: var(--butter);
      transform: rotate(-1.5deg);
    }
    .ab-work-hero .lead { margin-top: 26px; }
    .ab-work-hero__panel {
      position: relative;
      min-height: 430px;
      padding: 38px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(222,216,255,.82), rgba(215,238,225,.74));
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .ab-work-hero__panel::before,
    .ab-work-hero__panel::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(37,48,68,.1);
      border-radius: 50%;
    }
    .ab-work-hero__panel::before { width: 330px; height: 330px; right: -145px; top: -130px; }
    .ab-work-hero__panel::after { width: 220px; height: 220px; right: -55px; top: -65px; }
    .ab-work-hero__number {
      position: relative;
      z-index: 1;
      display: block;
      margin-top: 70px;
      color: var(--ink);
      font-size: clamp(86px, 12vw, 142px);
      font-weight: 850;
      line-height: .8;
      letter-spacing: -.08em;
    }
    .ab-work-hero__panel h2 {
      position: relative;
      z-index: 1;
      margin: 35px 0 12px;
      color: var(--ink);
      font-size: 30px;
      line-height: 1.1;
      letter-spacing: -.04em;
    }
    .ab-work-hero__panel p { position: relative; z-index: 1; color: #596477; font-size: 14px; }

    .ab-work-list { padding: 104px 0; background: linear-gradient(135deg, #f0ecff 0%, #f7f5ff 50%, #eaf5ef 100%); }
    .ab-work-list .ab-index-grid { margin-top: 44px; }
    .ab-work-list .ab-index-card { background: rgba(255,255,255,.72); }
    .ab-work-list .ab-index-card:nth-child(2) { background: rgba(222,216,255,.42); }
    .ab-work-list .ab-index-card:nth-child(3) { background: rgba(215,238,225,.55); }
    .ab-work-list .ab-index-media img { object-position: top; }
    .ab-work-list .ab-index-card-body { justify-content: center; }
    .ab-work-list .ab-index-card h2 { margin-top: 24px; }
    .ab-work-list .ab-index-card p { font-size: 16px; line-height: 1.7; }
    .ab-work-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
    .ab-work-tags .skill { background: rgba(255,255,255,.62); }
    .ab-work-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      margin-top: 30px;
      color: var(--ink);
      font-size: 14px;
      font-weight: 900;
    }
    .ab-work-link::after { content: "\2197"; font-size: 18px; }
    .ab-work-method { padding: 100px 0; }
    .ab-work-method .service-card { min-height: 300px; }
    .ab-work-method .service-index { margin-bottom: 48px; }
    .ab-work-cta { padding: 0 0 100px; }
    .ab-work-cta .contact-card { padding: 66px; }

    @media (max-width: 900px) {
      .ab-work-hero__grid { grid-template-columns: 1fr; gap: 44px; }
      .ab-work-hero__panel { min-height: 340px; }
      .ab-work-hero__number { margin-top: 40px; }
    }

    @media (max-width: 600px) {
      .ab-work-hero { padding: 48px 0 68px; }
      .ab-work-hero h1 { font-size: clamp(42px, 13vw, 58px); }
      .ab-work-hero__panel { min-height: 310px; padding: 28px; }
      .ab-work-list { padding: 76px 0; }
      .ab-work-list .ab-index-card-body { min-height: auto; }
      .ab-work-method { padding: 76px 0; }
      .ab-work-cta { padding-bottom: 76px; }
      .ab-work-cta .contact-card { padding: 44px 26px; }
    }

/* Page Création de site web */
.page-id-206 .entry-header { display: none !important; }
.page-id-206 .site-content { background: var(--cream) !important; }
.page-id-206 .site-content .ast-container,
.page-id-206 .content-area,
.page-id-206 .site-main,
.page-id-206 article.page,
.page-id-206 .entry-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.page-id-206 .site-content .ast-container { display: block !important; }
.page-id-206 .entry-content > * { max-width: none !important; }
.page-id-206 .entry-content a { text-decoration: none !important; }
.page-id-206 .entry-content p { margin: 0; }

.page-id-206 .ab-work-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(222,216,255,.58), transparent 30%),
    radial-gradient(circle at 12% 82%, rgba(215,238,225,.48), transparent 28%);
}
.page-id-206 .ab-work-hero__panel { min-height: 460px; }
.page-id-206 .ab-work-hero__panel > * { position: relative; z-index: 1; }
.page-id-206 .ab-work-hero__panel h2 { margin-top: 28px; }
.page-id-206 .ab-work-hero__panel ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.page-id-206 .ab-work-hero__panel li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #596477;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}
.page-id-206 .ab-work-hero__panel li::before {
  content: "\2713";
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,.68);
  color: var(--mint-strong);
  font-size: 12px;
  font-weight: 900;
}

.page-id-206 .ab-work-method {
  background: rgba(255,255,255,.34);
}
.page-id-206 .ab-work-method .ab-index-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.page-id-206 .ab-work-method .ab-index-card {
  display: block;
  min-height: 0;
}
.page-id-206 .ab-work-method .ab-index-card:first-child {
  background: rgba(222,216,255,.58);
}
.page-id-206 .ab-work-method .ab-index-card:nth-child(2) {
  background: rgba(215,238,225,.66);
}
.page-id-206 .ab-work-method .ab-index-card-body {
  min-height: 390px;
}
.page-id-206 .ab-work-method .ab-index-card h2 {
  margin-top: 24px;
}

.page-id-206 .ab-work-list .project-card {
  background: rgba(255,255,255,.78);
}
.page-id-206 .ab-work-list .project-card:nth-child(2) {
  background: rgba(222,216,255,.5);
}
.page-id-206 .ab-work-list .project-card:nth-child(3) {
  background: rgba(215,238,225,.58);
}

.page-id-206 [aria-labelledby="faq-title"] .service-card:nth-child(4) {
  background: var(--butter);
}
.page-id-206 [aria-labelledby="faq-title"] .service-card:nth-child(5) {
  background: var(--lilac);
}
.page-id-206 [aria-labelledby="faq-title"] .service-card:nth-child(6) {
  background: var(--mint);
}
.page-id-206 [aria-labelledby="faq-title"] .service-card {
  min-height: 290px;
}
.page-id-206 [aria-labelledby="faq-title"] .service-card h3 {
  max-width: none;
  font-size: 25px;
}

.page-id-206 [aria-labelledby="budget-title"] {
  background: linear-gradient(180deg, rgba(247,232,172,.18), rgba(255,255,255,0));
}
.page-id-206 [aria-labelledby="ressources-title"] {
  background: rgba(255,255,255,.32);
}

@media (max-width: 900px) {
  .page-id-206 .ab-work-hero__panel { min-height: auto; }
  .page-id-206 .ab-work-method .ab-index-grid { grid-template-columns: 1fr; }
  .page-id-206 .ab-work-method .ab-index-card-body { min-height: 330px; }
}

@media (max-width: 600px) {
  .page-id-206 .ab-work-hero__panel ul { gap: 12px; margin-top: 24px; }
  .page-id-206 .ab-work-method .ab-index-card-body { min-height: auto; }
  .page-id-206 [aria-labelledby="faq-title"] .service-card { min-height: 260px; }
}

    /* Accueil : cartes du journal avec visuels */
    .home .article-card--visual {
      position: relative;
      isolation: isolate;
      min-height: 360px;
      color: #fff;
      background: #253044;
      overflow: hidden;
    }
    .home .article-card--visual::before {
      content: "";
      position: absolute;
      z-index: -1;
      inset: 0;
      background: linear-gradient(180deg, rgba(20,27,42,.68) 0%, rgba(20,27,42,.9) 100%);
    }
    .home .article-card__image {
      position: absolute;
      z-index: -2;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .45s ease;
    }
    .home .article-card--visual:hover .article-card__image { transform: scale(1.035); }
    .home .article-card__content {
      display: flex;
      flex: 1;
      flex-direction: column;
      min-height: 302px;
    }
    .home .article-card--visual .article-date { color: rgba(255,255,255,.72); }
    .home .article-card--visual h3 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.28); }
    .home .article-card--visual p { color: rgba(255,255,255,.8); }
    .home .article-card--visual .article-link { color: #fff; }
    .home .journal-actions { justify-content: center; margin-top: 38px; }

    @media (max-width: 760px) {
      .home .article-card--visual { min-height: 330px; }
      .home .article-card__content { min-height: 274px; }
    }
