/* Digit’ALL — Feuille de styles de production */

/* =========================================================
       1. BASE, COULEURS & TYPOGRAPHIE
    ========================================================= */
    :root {
      --bg: #f6f8fb;
      --surface: #ffffff;
      --surface-soft: #edf3f9;
      --ink: #132033;
      --muted: #637184;
      --navy-950: #06101d;
      --navy-900: #0a1728;
      --navy-800: #102943;
      --blue: #204d9d;
      --blue-2: #3178d4;
      --red: #d40d1b;
      --green: #4a9b31;
      --cyan: #4bb9e7;
      --border: #dce5ef;
      --shadow-sm: 0 10px 30px rgba(10, 23, 40, .07);
      --shadow-md: 0 22px 60px rgba(10, 23, 40, .12);
      --shadow-lg: 0 30px 90px rgba(0, 0, 0, .25);
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 34px;
      --container: 1200px;
      --transition: 220ms ease;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 92px;
    }

    body {
      margin: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    body.menu-open,
    body.dialog-open { overflow: hidden; }

    img, svg { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    h1, h2, h3, h4, p { margin-top: 0; }
    h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; }
    h1 { margin-bottom: 28px; font-size: clamp(3rem, 7vw, 6rem); }
    h2 { margin-bottom: 22px; font-size: clamp(2.15rem, 4.5vw, 4rem); }
    h3 { margin-bottom: 12px; font-size: clamp(1.25rem, 2vw, 1.68rem); }
    h4 { margin-bottom: 10px; }
    p { color: var(--muted); }

    :focus-visible {
      outline: 3px solid var(--cyan);
      outline-offset: 4px;
    }

    ::selection {
      color: #fff;
      background: var(--blue);
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      position: relative;
      padding: 112px 0;
    }

    .section.alt { background: #fff; }

    .section.dark {
      color: #fff;
      background:
        radial-gradient(circle at 92% 15%, rgba(49, 120, 212, .15), transparent 28%),
        var(--navy-950);
    }

    .section-header {
      max-width: 800px;
      margin-bottom: 52px;
    }

    .section-header.center {
      margin-inline: auto;
      text-align: center;
    }

    .section-header p {
      max-width: 710px;
      font-size: 1.06rem;
    }

    .section-header.center p { margin-inline: auto; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 16px;
      color: var(--blue);
      font-size: .75rem;
      font-weight: 850;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 99px;
    }

    .dark .eyebrow { color: var(--cyan); }
    .dark h2, .dark h3, .dark h4 { color: #fff; }
    .dark p { color: #a7b6c7; }

    .skip-link {
      position: fixed;
      z-index: 9999;
      top: 12px;
      left: 12px;
      padding: 10px 15px;
      color: #fff;
      background: var(--blue);
      border-radius: 8px;
      transform: translateY(-160%);
    }

    .skip-link:focus { transform: translateY(0); }

    /* =========================================================
       2. BOUTONS
    ========================================================= */
    .btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 21px;
      border: 1px solid transparent;
      border-radius: 12px;
      cursor: pointer;
      font-size: .92rem;
      font-weight: 780;
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      color: #fff;
      background: linear-gradient(120deg, var(--blue), var(--blue-2));
      box-shadow: 0 13px 30px rgba(32, 77, 157, .27);
    }

    .btn-primary:hover {
      box-shadow: 0 17px 40px rgba(32, 77, 157, .38);
    }

    .btn-secondary {
      color: #fff;
      background: rgba(255, 255, 255, .07);
      border-color: rgba(255, 255, 255, .16);
    }

    .btn-ghost {
      color: var(--blue);
      background: #fff;
      border-color: #cfddec;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--blue);
      font-size: .84rem;
      font-weight: 800;
      cursor: pointer;
    }

    .text-link:hover { text-decoration: underline; }

    /* =========================================================
       3. HEADER / NAVIGATION
    ========================================================= */
    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 1000;
      height: 88px;
      color: #fff;
      background: rgba(6, 16, 29, .86);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: background var(--transition), box-shadow var(--transition);
    }

    .site-header.scrolled {
      background: rgba(6, 16, 29, .97);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
    }

    .nav {
      height: 88px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .logo {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
    }

    .logo img {
      width: auto;
      height: 56px;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 21px;
      margin-left: auto;
    }

    .nav-links a {
      position: relative;
      color: rgba(255, 255, 255, .80);
      font-size: .83rem;
      font-weight: 680;
      white-space: nowrap;
      transition: color var(--transition);
    }

    .nav-links a:not(.nav-cta)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 100%;
      height: 2px;
      background: var(--cyan);
      border-radius: 99px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--transition);
    }

    .nav-links a:hover,
    .nav-links a.active { color: #fff; }

    .nav-links a:hover::after,
    .nav-links a.active::after { transform: scaleX(1); }

    .nav-cta {
      min-height: 40px;
      padding-inline: 15px;
      border-radius: 9px;
      font-size: .79rem !important;
    }

    .menu-toggle {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      margin-left: auto;
      padding: 0;
      color: #fff;
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 10px;
      cursor: pointer;
    }

    .menu-toggle svg { width: 24px; height: 24px; }

    /* =========================================================
       4. HERO
    ========================================================= */
    .hero {
      position: relative;
      min-height: 840px;
      display: grid;
      align-items: center;
      overflow: hidden;
      padding: 155px 0 92px;
      color: #fff;
      background:
        radial-gradient(circle at 78% 22%, rgba(49, 120, 212, .23), transparent 29%),
        radial-gradient(circle at 58% 78%, rgba(75, 185, 231, .09), transparent 30%),
        linear-gradient(135deg, #06101d 0%, #0a1a2d 54%, #071321 100%);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .24;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, black, transparent 94%);
    }

    .hero-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.07fr) minmax(360px, .93fr);
      gap: 70px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 28px;
      padding: 8px 13px;
      color: #c9efff;
      background: rgba(75, 185, 231, .08);
      border: 1px solid rgba(75, 185, 231, .20);
      border-radius: 999px;
      font-size: .74rem;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--green);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(74, 155, 49, .13);
    }

    .hero h1 { color: #fff; }

    .gradient-text {
      color: transparent;
      background: linear-gradient(105deg, #fff, #79c8ff 48%, #7ad56f 100%);
      background-clip: text;
      -webkit-background-clip: text;
    }

    .hero-description {
      max-width: 690px;
      margin-bottom: 36px;
      color: #b0bece;
      font-size: clamp(1.04rem, 1.7vw, 1.23rem);
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-trio {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 48px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, .10);
    }

    .hero-trio-item {
      padding-right: 12px;
      color: #dbe5ef;
      font-size: .82rem;
      font-weight: 700;
    }

    .hero-trio-item span {
      display: block;
      margin-bottom: 3px;
      color: #7e91a5;
      font-size: .63rem;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .hero-visual {
      position: relative;
      min-height: 500px;
      display: grid;
      place-items: center;
    }

    .visual-glow {
      position: absolute;
      width: 380px;
      height: 380px;
      background: rgba(32, 77, 157, .30);
      border-radius: 50%;
      filter: blur(100px);
    }

    .digital-orbit {
      position: relative;
      z-index: 1;
      width: min(470px, 100%);
      aspect-ratio: 1;
      display: grid;
      place-items: center;
    }

    .orbit {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
    }

    .orbit.o1 { inset: 6%; }
    .orbit.o2 { inset: 20%; border-style: dashed; }
    .orbit.o3 { inset: 34%; }

    .orbit-core {
      width: 132px;
      height: 132px;
      display: grid;
      place-items: center;
      padding: 18px;
      color: #fff;
      background: linear-gradient(145deg, rgba(49, 120, 212, .96), rgba(32, 77, 157, .96));
      border: 1px solid rgba(255, 255, 255, .20);
      border-radius: 32px;
      box-shadow: 0 26px 65px rgba(0, 0, 0, .30);
      text-align: center;
      font-size: .83rem;
      font-weight: 850;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .orbit-node {
      position: absolute;
      min-width: 118px;
      padding: 12px 14px;
      color: #dbe8f4;
      background: rgba(11, 31, 52, .90);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 14px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, .23);
      backdrop-filter: blur(14px);
      text-align: center;
      font-size: .73rem;
      font-weight: 750;
    }

    .orbit-node.red { top: 2%; left: 50%; transform: translateX(-50%); border-top: 3px solid var(--red); }
    .orbit-node.blue { top: 47%; right: -1%; border-top: 3px solid var(--blue-2); }
    .orbit-node.green { bottom: 2%; left: 50%; transform: translateX(-50%); border-top: 3px solid var(--green); }
    .orbit-node.cyan { top: 47%; left: -1%; border-top: 3px solid var(--cyan); }

    /* =========================================================
       5. VALEURS
    ========================================================= */
    .values {
      padding: 40px 0;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .value {
      padding: 10px 28px;
      border-right: 1px solid var(--border);
    }

    .value:first-child { padding-left: 0; }
    .value:last-child { padding-right: 0; border-right: 0; }

    .value small {
      display: block;
      margin-bottom: 6px;
      color: var(--red);
      font-size: .64rem;
      font-weight: 850;
      letter-spacing: .09em;
    }

    .value strong {
      display: block;
      margin-bottom: 2px;
      color: var(--navy-900);
      font-size: .96rem;
    }

    .value span {
      color: #7f8d9d;
      font-size: .78rem;
    }

    /* =========================================================
       6. À PROPOS / MISSION / VISION
    ========================================================= */
    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 76px;
      align-items: start;
    }

    .about-card {
      position: sticky;
      top: 120px;
      overflow: hidden;
      padding: 38px;
      color: #fff;
      background:
        radial-gradient(circle at 85% 12%, rgba(75, 185, 231, .17), transparent 32%),
        var(--navy-900);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .about-card .logo-panel {
      display: inline-flex;
      margin-bottom: 32px;
      padding: 10px 13px;
      background: #fff;
      border-radius: 13px;
    }

    .about-card .logo-panel img { width: auto; height: 68px; }
    .about-card h3 { color: #fff; font-size: 2rem; }
    .about-card p { color: #aebdcd; }

    .mini-list {
      display: grid;
      gap: 10px;
      margin: 26px 0 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: flex;
      align-items: center;
      gap: 9px;
      color: #d7e3ee;
      font-size: .85rem;
      font-weight: 650;
    }

    .mini-list i {
      width: 8px;
      height: 8px;
      flex: 0 0 8px;
      background: var(--green);
      border-radius: 50%;
    }

    .about-content { display: grid; gap: 20px; }

    .content-block {
      padding: 30px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    .content-block h3 { color: var(--navy-900); }
    .content-block p:last-child { margin-bottom: 0; }

    .mission-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 20px;
    }

    .mission-item {
      padding: 20px;
      background: var(--surface-soft);
      border-radius: 15px;
    }

    .mission-item b {
      display: block;
      margin-bottom: 7px;
      color: var(--blue);
      font-size: .75rem;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .mission-item p {
      margin: 0;
      font-size: .83rem;
    }

    .profile-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 22px;
      align-items: start;
      margin-top: 20px;
      padding: 22px;
      background: #f7f9fc;
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .profile-monogram {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(145deg, var(--red), #9b101a);
      border-radius: 18px;
      font-size: 1.05rem;
      font-weight: 850;
    }

    .profile-card h4 {
      margin-bottom: 7px;
      color: var(--navy-900);
      font-size: 1.05rem;
    }

    .profile-card p {
      margin-bottom: 7px;
      font-size: .84rem;
    }

    /* =========================================================
       7. SERVICES - VUE D'ENSEMBLE
    ========================================================= */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      position: relative;
      min-height: 330px;
      overflow: hidden;
      padding: 32px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
    }

    .service-card:hover {
      transform: translateY(-7px);
      border-color: rgba(32, 77, 157, .25);
      box-shadow: var(--shadow-md);
    }

    .service-icon {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      margin-bottom: 46px;
      color: var(--blue);
      background: #ebf3ff;
      border-radius: 15px;
      font-size: 1.15rem;
      font-weight: 900;
    }

    .service-icon.red { color: var(--red); background: #fff0f1; }
    .service-icon.green { color: var(--green); background: #eff8ed; }

    .service-card h3 { color: var(--navy-900); }
    .service-card p { margin-bottom: 24px; }

    /* =========================================================
       8. SERVICES - DÉTAIL EXHAUSTIF
    ========================================================= */
    .service-detail {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 62px;
      align-items: start;
    }

    .service-detail + .service-detail {
      margin-top: 92px;
      padding-top: 92px;
      border-top: 1px solid var(--border);
    }

    .service-detail-copy {
      position: sticky;
      top: 120px;
    }

    .service-detail-copy .number {
      display: inline-block;
      margin-bottom: 20px;
      color: var(--red);
      font-size: .72rem;
      font-weight: 900;
      letter-spacing: .12em;
    }

    .service-detail-copy p { font-size: 1.02rem; }

    .benefit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .benefit {
      padding: 22px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
    }

    .benefit h4 {
      margin-bottom: 8px;
      color: var(--navy-900);
      font-size: .96rem;
      letter-spacing: -.015em;
    }

    .benefit p {
      margin: 0;
      font-size: .82rem;
    }

    .process {
      margin-top: 18px;
      overflow: hidden;
      background: var(--navy-900);
      border-radius: var(--radius-md);
    }

    .process-head {
      padding: 24px 26px;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, .10);
    }

    .process-steps {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .process-step {
      padding: 24px 26px;
      border-right: 1px solid rgba(255, 255, 255, .09);
      border-bottom: 1px solid rgba(255, 255, 255, .09);
    }

    .process-step:nth-child(even) { border-right: 0; }
    .process-step:nth-last-child(-n+2) { border-bottom: 0; }

    .process-step small {
      display: block;
      margin-bottom: 8px;
      color: var(--cyan);
      font-size: .65rem;
      font-weight: 850;
      letter-spacing: .08em;
    }

    .process-step h4 {
      margin-bottom: 8px;
      color: #fff;
      font-size: .94rem;
    }

    .process-step p {
      margin: 0;
      color: #9eafc0;
      font-size: .79rem;
    }

    .case-study {
      margin-top: 18px;
      padding: 24px 26px;
      background: #f7fafc;
      border: 1px solid var(--border);
      border-left: 4px solid var(--green);
      border-radius: 15px;
    }

    .case-study h4 {
      margin-bottom: 12px;
      color: var(--navy-900);
      font-size: .96rem;
    }

    .case-study p {
      margin-bottom: 7px;
      font-size: .83rem;
    }

    .case-study p:last-child { margin-bottom: 0; }

    /* =========================================================
       9. SERVICES COMPLÉMENTAIRES
    ========================================================= */
    .capabilities {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid rgba(255, 255, 255, .12);
      border-left: 1px solid rgba(255, 255, 255, .12);
    }

    .capability {
      min-height: 215px;
      padding: 25px;
      border-right: 1px solid rgba(255, 255, 255, .12);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      transition: background var(--transition);
    }

    .capability:hover { background: rgba(255, 255, 255, .035); }

    .capability-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 26px;
      color: var(--cyan);
      background: rgba(75, 185, 231, .08);
      border: 1px solid rgba(75, 185, 231, .12);
      border-radius: 12px;
      font-size: .76rem;
      font-weight: 900;
    }

    .capability h3 {
      font-size: 1rem;
      letter-spacing: -.015em;
    }

    .capability p {
      margin: 0;
      font-size: .8rem;
    }

    /* =========================================================
       10. POURQUOI NOUS ?
    ========================================================= */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .why-card {
      min-height: 245px;
      padding: 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: var(--shadow-sm);
    }

    .why-number {
      display: inline-grid;
      place-items: center;
      width: 34px;
      height: 34px;
      margin-bottom: 28px;
      color: #fff;
      background: var(--blue);
      border-radius: 10px;
      font-size: .72rem;
      font-weight: 850;
    }

    .why-card:nth-child(2) .why-number,
    .why-card:nth-child(5) .why-number { background: var(--red); }

    .why-card:nth-child(3) .why-number,
    .why-card:nth-child(6) .why-number { background: var(--green); }

    .why-card h3 {
      color: var(--navy-900);
      font-size: 1.08rem;
    }

    .why-card p {
      margin: 0;
      font-size: .86rem;
    }

    /* =========================================================
       11. RÉALISATIONS & TÉMOIGNAGES
    ========================================================= */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 20px;
    }

    .project-card {
      grid-column: span 6;
      position: relative;
      overflow: hidden;
      min-height: 390px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 30px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .project-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .project-card.featured {
      color: #fff;
      background:
        radial-gradient(circle at 88% 14%, rgba(75, 185, 231, .18), transparent 30%),
        linear-gradient(145deg, #071423, #102b4b);
      border-color: rgba(255, 255, 255, .10);
    }

    .project-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 30px;
    }

    .project-tag {
      padding: 5px 10px;
      color: var(--blue);
      background: #eaf2ff;
      border: 1px solid #d7e6fb;
      border-radius: 999px;
      font-size: .65rem;
      font-weight: 850;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .featured .project-tag {
      color: #cdf2ff;
      background: rgba(75, 185, 231, .09);
      border-color: rgba(75, 185, 231, .18);
    }

    .project-card h3 {
      max-width: 590px;
      color: var(--navy-900);
      font-size: 1.65rem;
    }

    .featured h3 { color: #fff; }
    .featured p { color: #adbdce; }

    .project-results {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-top: 24px;
    }

    .result {
      padding: 13px;
      background: #f4f7fb;
      border-radius: 11px;
    }

    .featured .result { background: rgba(255, 255, 255, .06); }

    .result strong {
      display: block;
      margin-bottom: 2px;
      color: var(--blue);
      font-size: 1.05rem;
    }

    .featured .result strong { color: #75d5fa; }

    .result span {
      color: #748598;
      font-size: .66rem;
      line-height: 1.3;
    }

    .featured .result span { color: #94a9bc; }

    .testimonial {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
    }

    .featured .testimonial { border-color: rgba(255, 255, 255, .10); }

    .testimonial p {
      margin-bottom: 9px;
      font-size: .82rem;
    }

    .testimonial strong {
      display: block;
      font-size: .78rem;
    }

    .testimonial span {
      color: #8392a3;
      font-size: .68rem;
    }

    /* =========================================================
       12. BLOG / INFOS+
    ========================================================= */
    .blog-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 30px;
    }

    .blog-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-btn {
      min-height: 38px;
      padding: 0 14px;
      color: #536579;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 999px;
      cursor: pointer;
      font-size: .76rem;
      font-weight: 800;
      transition: color var(--transition), background var(--transition), border-color var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: #fff;
      background: var(--blue);
      border-color: var(--blue);
    }

    .blog-count {
      color: #8290a0;
      font-size: .76rem;
      font-weight: 700;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .blog-card {
      display: flex;
      flex-direction: column;
      min-height: 430px;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .blog-card[hidden] { display: none !important; }

    .blog-visual {
      position: relative;
      height: 150px;
      overflow: hidden;
      background:
        radial-gradient(circle at 70% 20%, rgba(75, 185, 231, .26), transparent 26%),
        linear-gradient(145deg, #071525, #173d65);
    }

    .blog-visual::before,
    .blog-visual::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 50%;
    }

    .blog-visual::before {
      width: 170px;
      height: 170px;
      top: -68px;
      right: -20px;
    }

    .blog-visual::after {
      width: 90px;
      height: 90px;
      right: 80px;
      bottom: -45px;
    }

    .blog-visual .visual-label {
      position: absolute;
      z-index: 1;
      left: 24px;
      bottom: 22px;
      color: rgba(255, 255, 255, .90);
      font-size: .72rem;
      font-weight: 850;
      letter-spacing: .10em;
      text-transform: uppercase;
    }

    .blog-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 26px;
    }

    .blog-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
      color: #8795a6;
      font-size: .68rem;
      font-weight: 750;
    }

    .blog-category {
      color: var(--blue);
      font-weight: 850;
    }

    .blog-card h3 {
      color: var(--navy-900);
      font-size: 1.28rem;
    }

    .blog-card p {
      font-size: .84rem;
    }

    .blog-body .text-link {
      margin-top: auto;
      padding-top: 14px;
      border: 0;
      background: transparent;
    }

    /* Dialogue article */
    dialog.article-dialog {
      width: min(920px, calc(100% - 30px));
      max-height: min(88vh, 900px);
      margin: auto;
      padding: 0;
      overflow: hidden;
      color: var(--ink);
      background: #fff;
      border: 0;
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
    }

    dialog.article-dialog::backdrop {
      background: rgba(2, 8, 15, .78);
      backdrop-filter: blur(5px);
    }

    .article-shell {
      max-height: min(88vh, 900px);
      overflow-y: auto;
    }

    .article-header {
      position: sticky;
      top: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 18px 24px;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }

    .article-header strong {
      color: var(--navy-900);
      font-size: .83rem;
    }

    .dialog-close {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      display: grid;
      place-items: center;
      color: var(--navy-900);
      background: #f0f4f8;
      border: 1px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      font-size: 1.15rem;
      line-height: 1;
    }

    .article-content {
      padding: 42px clamp(24px, 5vw, 64px) 56px;
    }

    .article-kicker {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 18px;
      color: #75869a;
      font-size: .74rem;
      font-weight: 800;
    }

    .article-content h2 {
      margin-bottom: 18px;
      color: var(--navy-900);
      font-size: clamp(2rem, 5vw, 3.45rem);
    }

    .article-lead {
      margin-bottom: 32px;
      color: #4f6276;
      font-size: 1.08rem;
    }

    .article-content h3 {
      margin-top: 34px;
      color: var(--navy-900);
      font-size: 1.35rem;
    }

    .article-content h4 {
      margin-top: 23px;
      color: var(--navy-900);
      font-size: 1rem;
      letter-spacing: -.015em;
    }

    .article-content p,
    .article-content li {
      font-size: .94rem;
    }

    .article-content ul,
    .article-content ol {
      padding-left: 22px;
      color: var(--muted);
    }

    .article-content li + li { margin-top: 7px; }

    .article-callout {
      margin: 28px 0;
      padding: 20px 22px;
      background: #eef5fd;
      border-left: 4px solid var(--blue);
      border-radius: 13px;
    }

    .article-callout.warning {
      background: #fff7e8;
      border-left-color: #d38c13;
    }

    .article-callout p:last-child { margin-bottom: 0; }

    .article-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 24px 0;
    }

    .article-stat {
      padding: 17px;
      background: #f5f8fc;
      border: 1px solid var(--border);
      border-radius: 13px;
    }

    .article-stat strong {
      display: block;
      margin-bottom: 4px;
      color: var(--blue);
      font-size: 1.25rem;
    }

    .article-stat span {
      color: #75869a;
      font-size: .72rem;
    }

    /* =========================================================
       13. CONTACT
    ========================================================= */
    .contact-shell {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 64px;
      padding: 68px;
      color: #fff;
      background:
        radial-gradient(circle at 10% 85%, rgba(75, 185, 231, .11), transparent 25%),
        var(--navy-900);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .contact-copy h2 { color: #fff; }
    .contact-copy > p { color: #a9b7c7; }

    .contact-details {
      display: grid;
      gap: 14px;
      margin-top: 35px;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 13px;
      color: #e0e8f0;
      font-size: .85rem;
    }

    .contact-icon {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      flex: 0 0 38px;
      color: var(--cyan);
      background: rgba(75, 185, 231, .08);
      border-radius: 10px;
      font-weight: 900;
    }

    .contact-form {
      padding: 30px;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .form-group {
      display: grid;
      gap: 7px;
    }

    .form-group.full { grid-column: 1 / -1; }

    .form-group label {
      color: #37485b;
      font-size: .75rem;
      font-weight: 750;
    }

    .form-control {
      width: 100%;
      min-height: 49px;
      padding: 12px 14px;
      color: var(--ink);
      background: #f7f9fc;
      border: 1px solid #dce5ef;
      border-radius: 10px;
    }

    .form-control:focus {
      outline: none;
      background: #fff;
      border-color: var(--blue);
      box-shadow: 0 0 0 4px rgba(32, 77, 157, .10);
    }

    textarea.form-control {
      min-height: 128px;
      resize: vertical;
    }

    .form-button { width: 100%; }

    .form-status {
      min-height: 20px;
      margin: 11px 0 0;
      color: #5f7588;
      font-size: .76rem;
      text-align: center;
    }

    /* =========================================================
       14. FOOTER / INFORMATIONS LÉGALES
    ========================================================= */
    .footer {
      padding: 48px 0 28px;
      color: #8b9aac;
      background: var(--navy-950);
      border-top: 1px solid rgba(255, 255, 255, .07);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .8fr 1fr;
      gap: 36px;
      padding-bottom: 36px;
    }

    .footer-logo {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 6px 10px;
      background: #fff;
      border-radius: 9px;
    }

    .footer-logo img {
      width: auto;
      height: 48px;
    }

    .footer p {
      color: #8090a2;
      font-size: .79rem;
    }

    .footer h4 {
      margin-bottom: 15px;
      color: #fff;
      font-size: .84rem;
      letter-spacing: 0;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .footer-links button {
      width: fit-content;
      padding: 0;
      color: inherit;
      background: transparent;
      border: 0;
      cursor: pointer;
      font-size: .77rem;
      text-align: left;
      transition: color var(--transition);
    }

    .footer-links a:hover,
    .footer-links button:hover { color: #fff; }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      font-size: .72rem;
    }

    /* =========================================================
       15. MODALES LÉGALES
    ========================================================= */
    dialog.legal-dialog {
      width: min(760px, calc(100% - 30px));
      max-height: 84vh;
      padding: 0;
      overflow: hidden;
      border: 0;
      border-radius: 22px;
      box-shadow: var(--shadow-lg);
    }

    dialog.legal-dialog::backdrop {
      background: rgba(2, 8, 15, .76);
    }

    .legal-shell {
      max-height: 84vh;
      overflow-y: auto;
    }

    .legal-content {
      padding: 34px clamp(22px, 5vw, 48px) 46px;
    }

    .legal-content h2 {
      color: var(--navy-900);
      font-size: 2rem;
    }

    .legal-content h3 {
      margin-top: 28px;
      color: var(--navy-900);
      font-size: 1rem;
      letter-spacing: -.015em;
    }

    .legal-content p,
    .legal-content li {
      font-size: .88rem;
    }

    /* =========================================================
       16. UTILITAIRES
    ========================================================= */
    .reveal {
      opacity: 1;
      transform: none;
    }

    .js .reveal {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 650ms ease, transform 650ms ease;
    }

    .js .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .delay-1 { transition-delay: 80ms; }
    .delay-2 { transition-delay: 160ms; }

    .back-to-top {
      position: fixed;
      z-index: 900;
      right: 20px;
      bottom: 20px;
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--blue);
      border: 0;
      border-radius: 12px;
      box-shadow: 0 12px 28px rgba(32, 77, 157, .28);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* =========================================================
       17. RESPONSIVE
    ========================================================= */
    @media (max-width: 1120px) {
      .nav-links { gap: 14px; }
      .nav-links a { font-size: .78rem; }
      .nav-cta { display: none !important; }
      .hero-layout { gap: 40px; }
      .capabilities { grid-template-columns: repeat(3, 1fr); }
      .contact-shell { gap: 42px; padding: 52px; }
    }

    @media (max-width: 920px) {
      .section { padding: 88px 0; }

      .menu-toggle { display: grid; }

      .nav-links {
        position: fixed;
        top: 88px;
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        margin: 0;
        padding: 22px;
        background: rgba(6, 16, 29, .99);
        border-top: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 30px 50px rgba(0, 0, 0, .25);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-120%);
        transition: transform 280ms ease, opacity 280ms ease, visibility 280ms;
      }

      .nav-links.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 13px 7px;
        font-size: .98rem;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
      }

      .nav-links a::after { display: none; }
      .nav-cta { display: inline-flex !important; margin-top: 14px; border: 0 !important; }

      .hero { min-height: auto; }

      .hero-layout,
      .about-grid,
      .service-detail,
      .contact-shell {
        grid-template-columns: 1fr;
      }

      .hero-visual { min-height: 420px; }
      .about-card,
      .service-detail-copy { position: static; }

      .services-grid,
      .why-grid,
      .blog-grid { grid-template-columns: 1fr; }

      .service-card { min-height: auto; }
      .capabilities { grid-template-columns: repeat(2, 1fr); }
      .project-card { grid-column: span 12; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 650px) {
      .container { width: min(calc(100% - 30px), var(--container)); }
      .section { padding: 72px 0; }
      .site-header, .nav { height: 78px; }
      .nav-links { top: 78px; }

      .logo {
        padding: 4px 7px;
        border-radius: 8px;
      }

      .logo img { height: 45px; }

      h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
      h2 { font-size: clamp(2rem, 10vw, 2.75rem); }

      .hero { padding: 130px 0 70px; }
      .hero-actions { display: grid; }
      .hero-actions .btn { width: 100%; }

      .hero-trio {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .hero-visual { min-height: 350px; }

      .digital-orbit {
        width: 340px;
        max-width: 100%;
      }

      .orbit-node {
        min-width: 92px;
        padding: 9px 10px;
        font-size: .65rem;
      }

      .values-grid { grid-template-columns: 1fr; }

      .value,
      .value:first-child,
      .value:last-child {
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--border);
      }

      .value:last-child { border-bottom: 0; }

      .about-card { padding: 28px 23px; }

      .mission-grid,
      .benefit-grid,
      .process-steps,
      .project-results,
      .form-grid,
      .capabilities,
      .footer-grid,
      .article-stats {
        grid-template-columns: 1fr;
      }

      .profile-card { grid-template-columns: 1fr; }

      .service-detail + .service-detail {
        margin-top: 72px;
        padding-top: 72px;
      }

      .process-step,
      .process-step:nth-child(even),
      .process-step:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .09);
      }

      .process-step:last-child { border-bottom: 0; }
      .capability { min-height: auto; }
      .project-card { min-height: auto; padding: 24px; }

      .blog-toolbar { align-items: flex-start; }
      .blog-card { min-height: auto; }

      .contact-shell {
        padding: 34px 20px 22px;
        border-radius: 25px;
      }

      .contact-form { padding: 22px 17px; }
      .form-group.full { grid-column: auto; }
      .footer-bottom { flex-direction: column; }

      dialog.article-dialog {
        width: calc(100% - 18px);
        max-height: 94vh;
        border-radius: 17px;
      }

      .article-shell { max-height: 94vh; }
      .article-header { padding: 14px 16px; }
      .article-content { padding: 28px 20px 40px; }
    }

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

    :root {
      --blue: #204B9B;
      --blue-2: #2A63B8;
      --red: #E00714;
      --green: #4E8F33;
      --cyan: #204B9B;
      --navy-950: #071321;
      --navy-900: #0B1A2B;
      --ink: #172233;
      --muted: #667383;
      --bg: #F7F8FA;
      --surface-soft: #F1F4F7;
      --border: #E2E7ED;
      --shadow-sm: 0 6px 20px rgba(15, 31, 50, .045);
      --shadow-md: 0 18px 48px rgba(15, 31, 50, .085);
    }

    body {
      background: #fff;
    }

    .section {
      padding: 124px 0;
    }

    .section.alt {
      background: #F7F8FA;
    }

    .section-header {
      margin-bottom: 64px;
    }

    .section-header p {
      line-height: 1.75;
    }

    /* Header blanc : le vrai logo s'intègre sans cartouche artificiel */
    .site-header {
      color: var(--ink);
      background: rgba(255, 255, 255, .95);
      border-bottom: 1px solid rgba(23, 34, 51, .08);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .site-header.scrolled {
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 8px 28px rgba(15, 31, 50, .07);
    }

    .logo {
      padding: 0;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
    }

    .logo img {
      height: 60px;
    }

    .nav-links a {
      color: #3D4A5B;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--blue);
    }

    .nav-links a:not(.nav-cta)::after {
      background: var(--blue);
    }

    .nav-cta {
      color: #fff !important;
    }

    .menu-toggle {
      color: var(--navy-900);
      background: #F4F6F8;
      border-color: var(--border);
    }

    /* Hero : composition éditoriale sobre */
    .hero {
      min-height: 790px;
      padding-top: 164px;
      background:
        linear-gradient(130deg, #071321 0%, #0B1A2B 72%, #10253C 100%);
    }

    .hero::before {
      opacity: .11;
      background-size: 70px 70px;
    }

    .hero-layout {
      grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
      gap: 92px;
    }

    .hero-badge {
      color: #D8E2EF;
      background: rgba(255, 255, 255, .045);
      border-color: rgba(255, 255, 255, .10);
    }

    .gradient-text {
      background: linear-gradient(105deg, #FFFFFF 0%, #B9CDED 100%);
      background-clip: text;
      -webkit-background-clip: text;
    }

    .hero-trio {
      gap: 24px;
    }

    .hero-trio-item {
      border-left: 2px solid rgba(255, 255, 255, .13);
      padding-left: 14px;
    }

    .hero-trio-item:nth-child(1) { border-left-color: var(--red); }
    .hero-trio-item:nth-child(2) { border-left-color: #5F84BD; }
    .hero-trio-item:nth-child(3) { border-left-color: var(--green); }

    .visual-glow,
    .digital-orbit {
      display: none !important;
    }

    .hero-visual {
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-composition {
      width: min(100%, 465px);
      padding: 8px 0 8px 38px;
      border-left: 1px solid rgba(255, 255, 255, .13);
    }

    .brand-kicker {
      margin-bottom: 13px;
      color: #8093A9;
      font-size: .73rem;
      font-weight: 850;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .brand-word {
      margin-bottom: 48px;
      color: #fff;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      font-weight: 760;
      letter-spacing: -.055em;
      line-height: .95;
    }

    .brand-lines {
      display: grid;
      gap: 24px;
    }

    .brand-line {
      display: grid;
      grid-template-columns: 12px 1fr;
      gap: 18px;
      align-items: start;
    }

    .brand-marker {
      width: 8px;
      height: 8px;
      margin-top: 7px;
      border-radius: 50%;
    }

    .brand-line-red .brand-marker { background: var(--red); }
    .brand-line-blue .brand-marker { background: #5E82BA; }
    .brand-line-green .brand-marker { background: var(--green); }

    .brand-line strong {
      display: block;
      color: #fff;
      font-size: 1rem;
      font-weight: 760;
    }

    .brand-line small {
      display: block;
      margin-top: 3px;
      color: #8496AA;
      font-size: .78rem;
      line-height: 1.45;
    }

    .brand-signature {
      margin-top: 48px;
      color: #6F8195;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .brand-signature span {
      padding: 0 6px;
      color: #43576D;
    }

    /* Valeurs plus légères */
    .values {
      padding: 34px 0;
    }

    .value {
      padding-top: 4px;
      padding-bottom: 4px;
    }

    /* À propos : moins de "boîtes" */
    .about-card {
      box-shadow: none;
      border-radius: 24px;
    }

    .content-block {
      padding: 34px 0;
      background: transparent;
      border: 0;
      border-bottom: 1px solid var(--border);
      border-radius: 0;
      box-shadow: none;
    }

    .content-block:last-child {
      border-bottom: 0;
    }

    .mission-grid {
      gap: 10px;
    }

    .mission-item {
      background: #F5F7F9;
      border: 1px solid #ECEFF3;
    }

    .profile-card {
      background: #F7F8FA;
      border-color: #E5E9EE;
    }

    /* Cartes services simplifiées */
    .services-grid {
      gap: 34px;
    }

    .service-card {
      min-height: 290px;
      padding: 8px 4px 30px;
      background: transparent;
      border: 0;
      border-top: 1px solid var(--border);
      border-radius: 0;
      box-shadow: none;
    }

    .service-card:hover {
      transform: none;
      border-color: var(--border);
      box-shadow: none;
    }

    .service-icon {
      margin: 28px 0 42px;
      width: 45px;
      height: 45px;
      border-radius: 12px;
    }

    /* Détails des expertises : divulgation progressive */
    .service-detail {
      display: block;
      max-width: 980px;
      margin-inline: auto;
    }

    .service-detail + .service-detail {
      margin-top: 88px;
      padding-top: 88px;
    }

    .service-detail-copy {
      position: static;
      max-width: 760px;
      margin-bottom: 30px;
    }

    .service-detail-copy h2 {
      max-width: 760px;
    }

    .service-expand {
      border-top: 1px solid var(--border);
    }

    .service-expand summary {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 0;
      color: var(--blue);
      cursor: pointer;
      list-style: none;
      font-size: .86rem;
      font-weight: 800;
    }

    .service-expand summary::-webkit-details-marker {
      display: none;
    }

    .service-expand summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      flex: 0 0 30px;
      color: var(--blue);
      background: #EFF3F8;
      border-radius: 50%;
      font-size: 1.15rem;
      font-weight: 500;
      transition: transform var(--transition);
    }

    .service-expand[open] summary::after {
      content: "−";
    }

    .service-expand-content {
      padding: 18px 0 8px;
    }

    .benefit-grid {
      gap: 10px;
    }

    .benefit {
      background: #F8F9FB;
      border-color: #E8ECF0;
    }

    .process {
      margin-top: 26px;
      border-radius: 18px;
      box-shadow: none;
    }

    .case-study {
      margin-top: 16px;
      background: #FBFCFD;
    }

    /* Services complémentaires : une seule couleur dominante,
       rouge/vert réservés aux signaux de marque ailleurs */
    .section.dark {
      background: #081522;
    }

    .capability-icon {
      color: #AFC4DF;
      background: rgba(255, 255, 255, .045);
      border-color: rgba(255, 255, 255, .09);
    }

    /* Pourquoi nous : plus éditorial, moins "dashboard" */
    .why-grid {
      gap: 34px 42px;
    }

    .why-card {
      min-height: auto;
      padding: 28px 0;
      background: transparent;
      border: 0;
      border-top: 1px solid var(--border);
      border-radius: 0;
      box-shadow: none;
    }

    .why-number {
      width: auto;
      height: auto;
      margin-bottom: 28px;
      padding: 0;
      color: var(--blue);
      background: transparent !important;
      border-radius: 0;
      font-size: .72rem;
    }

    .why-card:nth-child(2) .why-number,
    .why-card:nth-child(5) .why-number {
      color: var(--red);
    }

    .why-card:nth-child(3) .why-number,
    .why-card:nth-child(6) .why-number {
      color: var(--green);
    }

    /* Réalisations institutionnelles, cohérentes entre elles */
    .projects-grid {
      gap: 26px;
    }

    .project-card,
    .project-card.featured {
      min-height: 370px;
      color: var(--ink);
      background: #fff;
      border: 1px solid var(--border);
      border-top: 3px solid var(--blue);
      box-shadow: none;
    }

    .project-card:nth-child(1) { border-top-color: var(--red); }
    .project-card:nth-child(2) { border-top-color: var(--blue); }
    .project-card:nth-child(3) { border-top-color: var(--green); }
    .project-card:nth-child(4) { border-top-color: var(--blue); }

    .project-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .project-card.featured h3,
    .project-card.featured p {
      color: inherit;
    }

    .featured .project-tag {
      color: var(--blue);
      background: #EEF3FA;
      border-color: #DDE6F1;
    }

    .featured .result {
      background: #F5F7F9;
    }

    .featured .result strong {
      color: var(--blue);
    }

    .featured .result span {
      color: #748598;
    }

    .featured .testimonial {
      border-color: var(--border);
    }

    /* Blog plus aéré */
    .blog-grid {
      gap: 28px;
    }

    .blog-card {
      border-radius: 16px;
      box-shadow: none;
    }

    .blog-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-sm);
    }

    .blog-visual {
      height: 126px;
      background:
        linear-gradient(135deg, #0B1A2B 0%, #173754 100%);
    }

    .blog-card:nth-child(1) .blog-visual {
      border-top: 3px solid var(--red);
    }

    .blog-card:nth-child(2) .blog-visual {
      border-top: 3px solid var(--blue);
    }

    .blog-card:nth-child(3) .blog-visual {
      border-top: 3px solid var(--green);
    }

    /* Contact : calme et institutionnel */
    .contact-shell {
      background: #0B1A2B;
      border-radius: 26px;
    }

    .contact-icon {
      color: #B7C9DF;
      background: rgba(255, 255, 255, .055);
    }

    .contact-form {
      border-radius: 18px;
      box-shadow: none;
    }

    /* Footer : logo sans cartouche visible */
    .footer-logo {
      padding: 5px 8px;
      border-radius: 8px;
    }

    @media (max-width: 920px) {
      .site-header .nav-links {
        background: rgba(255, 255, 255, .99);
        border-top-color: var(--border);
      }

      .site-header .nav-links a {
        color: #334357;
        border-bottom-color: var(--border);
      }

      .site-header .nav-links a:hover,
      .site-header .nav-links a.active {
        color: var(--blue);
      }

      .nav-cta {
        color: #fff !important;
      }

      .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual {
        min-height: auto;
        justify-content: flex-start;
      }

      .brand-composition {
        width: min(100%, 640px);
        margin-top: 10px;
      }

      .service-detail {
        max-width: none;
      }
    }

    @media (max-width: 650px) {
      .section {
        padding: 84px 0;
      }

      .logo img {
        height: 48px;
      }

      .hero {
        padding-top: 130px;
      }

      .brand-composition {
        padding-left: 22px;
      }

      .brand-word {
        margin-bottom: 34px;
        font-size: 2.2rem;
      }

      .brand-lines {
        gap: 18px;
      }

      .hero-trio {
        gap: 12px;
      }

      .service-card {
        padding-bottom: 22px;
      }

      .benefit-grid {
        grid-template-columns: 1fr;
      }

      .project-card,
      .project-card.featured {
        min-height: auto;
      }
    }

    

    /* Le logo transparent s'intègre directement au header blanc. */
    .logo img {
      height: 56px;
      max-width: 185px;
      object-fit: contain;
    }

    .logo,
    .footer-logo {
      background: transparent !important;
      box-shadow: none !important;
      padding: 0 !important;
    }

    /* Le footer devient clair pour accueillir le logo transparent
       sans ajouter de cartouche blanc artificiel. */
    .footer {
      color: #687688;
      background: #F6F8FA;
      border-top: 1px solid var(--border);
    }

    .footer h4 {
      color: var(--navy-900);
    }

    .footer p {
      color: #718093;
    }

    .footer-links a,
    .footer-links button {
      color: #657487;
    }

    .footer-links a:hover,
    .footer-links button:hover {
      color: var(--blue);
    }

    .footer-bottom {
      color: #7C8998;
      border-top-color: var(--border);
    }

    .footer-logo img {
      height: 52px;
      width: auto;
      max-width: 180px;
    }

        /* ---------------------------------------------------------
       BANDEAU PARTENAIRES
    --------------------------------------------------------- */
    .partners-section {
      position: relative;
      overflow: hidden;
      padding: 76px 0 70px;
      background: #fff;
      border-bottom: 1px solid var(--border);
    }

    .partners-intro {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 72px;
      align-items: end;
      margin-bottom: 36px;
    }

    .partners-intro .eyebrow {
      margin-bottom: 9px;
    }

    .partners-intro h2 {
      max-width: 560px;
      margin: 0;
      color: var(--navy-900);
      font-size: clamp(1.7rem, 2.8vw, 2.5rem);
      letter-spacing: -.04em;
    }

    .partners-intro p {
      max-width: 590px;
      margin: 0 0 4px auto;
      color: #6E7C8D;
      font-size: .92rem;
      line-height: 1.75;
    }

    .partners-marquee {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 6px 0;
      outline: none;
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 4%,
        #000 96%,
        transparent 100%
      );
      mask-image: linear-gradient(
        90deg,
        transparent 0,
        #000 4%,
        #000 96%,
        transparent 100%
      );
    }

    .partners-track {
      width: max-content;
      display: flex;
      align-items: center;
      gap: 0;
      animation: partners-scroll 38s linear infinite;
      will-change: transform;
    }

    .partners-marquee:hover .partners-track,
    .partners-marquee:focus .partners-track,
    .partners-marquee:focus-within .partners-track {
      animation-play-state: paused;
    }

    @keyframes partners-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    .partner-logo-item {
      width: 285px;
      flex: 0 0 285px;
      min-height: 112px;
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 18px;
      align-items: center;
      padding: 16px 26px;
      border-right: 1px solid #E6EAF0;
    }

    .partner-mark {
      position: relative;
      width: 88px;
      height: 72px;
      display: grid;
      place-items: center;
      overflow: hidden;
    }

    .partner-real-logo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .partner-mark.logo-loaded .partner-real-logo {
      display: block;
    }

    .partner-mark.logo-loaded .partner-wordmark {
      display: none;
    }

    /* Fallback volontairement sobre : il n'imite pas le logo officiel. */
    .partner-wordmark {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      color: #536377;
      font-size: .92rem;
      font-weight: 850;
      letter-spacing: .04em;
      text-align: center;
    }

    .partner-name {
      min-width: 0;
    }

    .partner-name strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy-900);
      font-size: .78rem;
      line-height: 1.3;
    }

    .partner-name small {
      display: block;
      color: #8A96A5;
      font-size: .63rem;
      line-height: 1.35;
    }

    /* Pas de note juridique visible sous le bandeau :
       le rendu reste celui d'un site fini, pas d'une maquette. */

    @media (max-width: 920px) {
      .partners-intro {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .partners-intro p {
        margin-left: 0;
      }

      .partner-logo-item {
        width: 250px;
        flex-basis: 250px;
        grid-template-columns: 76px 1fr;
        padding-inline: 20px;
      }

      .partner-mark {
        width: 76px;
        height: 66px;
      }
    }

    @media (max-width: 650px) {
      .partners-section {
        padding: 58px 0 54px;
      }

      .partners-marquee {
        width: calc(100% + 30px);
        margin-inline: -15px;
        -webkit-mask-image: linear-gradient(
          90deg,
          transparent 0,
          #000 2%,
          #000 98%,
          transparent 100%
        );
        mask-image: linear-gradient(
          90deg,
          transparent 0,
          #000 2%,
          #000 98%,
          transparent 100%
        );
      }

      .partner-logo-item {
        width: 225px;
        flex-basis: 225px;
        min-height: 102px;
        grid-template-columns: 65px 1fr;
        gap: 12px;
        padding: 13px 16px;
      }

      .partner-mark {
        width: 65px;
        height: 60px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .partners-marquee {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
        scrollbar-width: thin;
      }

      .partners-track {
        animation: none !important;
      }

      .partners-track > [aria-hidden="true"] {
        display: none;
      }
    }

            .references-section {
      background: #F7F8FA;
    }

    .references-heading {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 64px;
      align-items: end;
      margin: 12px 0 28px;
      padding-top: 26px;
      border-top: 1px solid var(--border);
    }

    .references-heading.secondary {
      margin-top: 92px;
    }

    .references-index {
      display: block;
      margin-bottom: 10px;
      color: var(--red);
      font-size: .67rem;
      font-weight: 900;
      letter-spacing: .12em;
    }

    .references-heading h3 {
      margin: 0;
      color: var(--navy-900);
      font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    }

    .references-heading p {
      max-width: 580px;
      margin: 0 0 3px auto;
      font-size: .9rem;
      line-height: 1.7;
    }

    .flagship-grid {
      display: grid;
      gap: 22px;
    }

    .flagship-case {
      display: grid;
      grid-template-columns: 235px 1fr;
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
    }

    .flagship-side {
      min-height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px 26px;
      color: #fff;
    }

    .flagship-side-blue { background: #173E78; }
    .flagship-side-red { background: #B8121C; }
    .flagship-side-green { background: #3E762E; }

    .case-sector {
      margin-bottom: auto;
      color: rgba(255,255,255,.72);
      font-size: .64rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
    }

    .case-client {
      display: block;
      margin-top: 80px;
      color: #fff;
      font-size: 1.04rem;
      font-weight: 800;
      line-height: 1.3;
    }

    .case-country {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,.70);
      font-size: .71rem;
    }

    .flagship-main {
      padding: 30px 34px 26px;
    }

    .case-topline {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
      color: #8794A4;
      font-size: .67rem;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .flagship-main h3 {
      max-width: 760px;
      margin-bottom: 15px;
      color: var(--navy-900);
      font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    }

    .case-lead {
      max-width: 820px;
      margin-bottom: 24px;
      font-size: .96rem;
    }

    .case-role {
      max-width: 880px;
      padding: 18px 0 20px;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .case-role strong {
      display: block;
      margin-bottom: 6px;
      color: var(--blue);
      font-size: .72rem;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .case-role p {
      margin: 0;
      font-size: .82rem;
    }

    .case-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      margin-top: 22px;
    }

    .case-metrics > div {
      min-height: 88px;
      padding: 15px 14px;
      background: #F6F8FA;
      border-radius: 11px;
    }

    .case-metrics strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy-900);
      font-size: 1.02rem;
      line-height: 1.15;
    }

    .case-metrics span {
      display: block;
      color: #7D8A99;
      font-size: .65rem;
      line-height: 1.35;
    }

    .case-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 22px;
    }

    .case-footer > span {
      max-width: 610px;
      color: #8A96A4;
      font-size: .65rem;
      line-height: 1.45;
    }

    .case-footer .text-link {
      flex: 0 0 auto;
      padding: 0;
      background: transparent;
      border: 0;
    }

    .other-references-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .reference-mini {
      min-height: 300px;
      padding: 28px;
      background: #fff;
      border: 1px solid var(--border);
      border-top: 3px solid var(--blue);
      border-radius: 15px;
    }

    .reference-mini:nth-child(1) { border-top-color: var(--red); }
    .reference-mini:nth-child(2) { border-top-color: var(--green); }
    .reference-mini.equipment { border-top-color: var(--blue); }

    .mini-category {
      display: block;
      margin-bottom: 30px;
      color: var(--blue);
      font-size: .64rem;
      font-weight: 850;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .reference-mini h3 {
      margin-bottom: 5px;
      color: var(--navy-900);
      font-size: 1.38rem;
    }

    .mini-client {
      margin-bottom: 18px;
      color: #8491A0;
      font-size: .71rem;
      font-weight: 700;
    }

    .reference-mini > p:not(.mini-client) {
      font-size: .84rem;
    }

    .mini-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 18px;
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      color: #778596;
      font-size: .69rem;
    }

    .mini-stats strong {
      color: var(--navy-900);
      font-size: .78rem;
    }

    .mini-testimonial {
      margin-top: 18px;
      color: #788696;
    }

    .mini-testimonial strong {
      display: block;
      color: var(--navy-900);
      font-size: .71rem;
    }

    .mini-testimonial span {
      font-size: .63rem;
    }

    .case-dialog .article-content {
      padding-bottom: 62px;
    }

    @media (max-width: 920px) {
      .references-heading {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .references-heading p {
        margin-left: 0;
      }

      .flagship-case {
        grid-template-columns: 1fr;
      }

      .flagship-side {
        min-height: 165px;
      }

      .case-client {
        margin-top: 40px;
      }

      .case-metrics {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 650px) {
      .flagship-main {
        padding: 24px 20px 22px;
      }

      .flagship-side {
        padding: 22px 20px;
      }

      .case-topline {
        flex-direction: column;
        gap: 4px;
      }

      .case-metrics,
      .other-references-grid {
        grid-template-columns: 1fr;
      }

      .case-footer {
        align-items: flex-start;
        flex-direction: column;
      }

      .references-heading.secondary {
        margin-top: 70px;
      }

      .reference-mini {
        min-height: auto;
        padding: 24px 20px;
      }
    }

    

    .strategic-partnerships {
      background: #fff;
    }

    .strategic-partnership-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .strategic-partner-card {
      overflow: hidden;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      box-shadow: none;
    }

    .partner-card-head {
      min-height: 100px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 24px;
      background: #F7F8FA;
      border-bottom: 1px solid var(--border);
    }

    .partner-identity {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .partner-initials {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      flex: 0 0 50px;
      color: #fff;
      background: var(--blue);
      border-radius: 12px;
      font-size: .82rem;
      font-weight: 900;
      letter-spacing: .04em;
    }

    .partner-initials.telecom {
      background: var(--green);
    }

    .partner-identity strong {
      display: block;
      color: var(--navy-900);
      font-size: .84rem;
      line-height: 1.3;
    }

    .partner-identity small {
      display: block;
      margin-top: 4px;
      color: #8190A1;
      font-size: .67rem;
    }

    .partner-badge {
      flex: 0 0 auto;
      padding: 7px 10px;
      color: #536579;
      background: #fff;
      border: 1px solid #DCE3EA;
      border-radius: 999px;
      font-size: .61rem;
      font-weight: 850;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .partner-badge.exclusive {
      color: #9C111A;
      background: #FFF4F4;
      border-color: #F1CECF;
    }

    .partner-card-body {
      padding: 30px 28px 28px;
    }

    .partner-domain {
      display: block;
      margin-bottom: 22px;
      color: var(--blue);
      font-size: .64rem;
      font-weight: 850;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    .strategic-partner-card:nth-child(2) .partner-domain {
      color: var(--green);
    }

    .partner-card-body h3 {
      max-width: 540px;
      margin-bottom: 16px;
      color: var(--navy-900);
      font-size: clamp(1.5rem, 2.4vw, 2.05rem);
    }

    .partner-card-body > p {
      font-size: .88rem;
      line-height: 1.72;
    }

    .partner-highlight {
      margin: 26px 0 24px;
      padding: 18px 20px;
      background: #F4F7FB;
      border-left: 3px solid var(--blue);
      border-radius: 0 12px 12px 0;
    }

    .partner-highlight.neutral {
      background: #F5F8F4;
      border-left-color: var(--green);
    }

    .partner-highlight strong {
      display: block;
      margin-bottom: 6px;
      color: var(--navy-900);
      font-size: .78rem;
    }

    .partner-highlight p {
      margin: 0;
      font-size: .78rem;
      line-height: 1.6;
    }

    .partner-scope {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .partner-scope span {
      padding: 7px 10px;
      color: #607083;
      background: #F8F9FB;
      border: 1px solid #E5E9EE;
      border-radius: 999px;
      font-size: .63rem;
      font-weight: 720;
    }

    .strategic-partnership-note {
      max-width: 820px;
      margin: 24px auto 0;
      color: #8793A1;
      font-size: .67rem;
      line-height: 1.55;
      text-align: center;
    }

    /* La navigation reste compacte malgré l'ajout de Partenariats. */
    @media (min-width: 921px) and (max-width: 1180px) {
      .nav-links {
        gap: 12px;
      }

      .nav-links a {
        font-size: .74rem;
      }
    }

    @media (max-width: 920px) {
      .strategic-partnership-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 650px) {
      .partner-card-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .partner-card-body {
        padding: 24px 20px 22px;
      }

      .partner-badge {
        align-self: flex-start;
      }
    }

/* ---------------------------------------------------------
   RÉSEAUX SOCIAUX
--------------------------------------------------------- */
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}

.social-label {
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 750;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-link:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 3px solid rgba(255,255,255,.4);
  outline-offset: 3px;
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: currentColor;
}

.contact-social a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-social .contact-icon {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: -.03em;
}

@media (max-width: 650px) {
  .social-links {
    margin-top: 18px;
  }
}

.social-x-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
  color: currentColor;
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
}

/* ---------------------------------------------------------
   FINITION PRODUCTION — ACCESSIBILITÉ & CONTRASTES
--------------------------------------------------------- */
.partner-name small,
.case-footer > span,
.mini-client,
.mini-stats,
.partner-scope span,
.blog-count,
.article-meta,
.footer-bottom {
  color: #5F6B78;
}

.footer .social-label {
  color: #526174;
}

.footer .social-link {
  color: #204B9B;
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.footer .social-link:hover {
  color: #173E78;
  background: #EEF3F8;
  border-color: #9FB2C8;
}

.footer .social-link:focus-visible {
  outline: 3px solid rgba(32,75,155,.32);
  outline-offset: 3px;
}

/* ---------------------------------------------------------
   FORMULAIRE AUTONOME
--------------------------------------------------------- */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.form-button[disabled] {
  cursor: wait;
  opacity: .72;
}

.form-status.success {
  color: #236B2D;
}

.form-status.error {
  color: #A9141C;
}

.form-noscript {
  margin-top: 10px;
  font-size: .8rem;
  color: #5F6B78;
}

