  /* =============================================
     VARIABLES & RESET
  ============================================= */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    /* Palette officielle RecPeer (branding 17/04/2026) */
    --ink:      #0A0A0A;   /* noir profond - fonds sombres */
    --ink2:     #1A1A1A;   /* noir section (un cran plus clair) */
    --blue:     #E85450;   /* CORAL primaire - accent dynamique */
    --blue-l:   #F47571;   /* coral hover */
    --blue-xl:  #FFB4B1;   /* coral clair - texte accent sur fond noir */
    --cream:    #F5F5F5;   /* gris clair - fonds doux */
    --white:    #FFFFFF;
    --gray-50:  #FAFAFA;
    --gray-100: #EEEEEE;
    --gray-300: #CCCCCC;
    --gray-500: #7A7A7A;
    --gray-700: #3C3C3C;
    --orange:   #E85450;   /* alias coral pour cohérence */
    --orange-l: #F47571;
    --r: 10px;
    --shadow-sm: 0 2px 8px rgba(10,10,10,.06);
    --shadow:    0 6px 24px rgba(10,10,10,.10);
    --shadow-lg: 0 16px 48px rgba(10,10,10,.14);
    --t: .22s ease;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--white);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* =============================================
     TYPOGRAPHY HELPERS
  ============================================= */
  .eyebrow {
    display: inline-flex; align-items: center; gap: .55rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--blue);
    margin-bottom: 1.1rem;
  }
  .eyebrow::before {
    content: ''; display: block;
    width: 18px; height: 2px;
    background: var(--blue); border-radius: 1px; flex-shrink: 0;
  }
  .eyebrow.light { color: var(--blue-l); }
  .eyebrow.light::before { background: var(--blue-l); }
  .eyebrow.orange { color: var(--orange); }
  .eyebrow.orange::before { background: var(--orange); }

  h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

  .display {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.03em; color: var(--ink);
  }
  .display.light { color: var(--white); }
  .display em { font-style: normal; color: var(--blue); }
  .display.light em { color: var(--blue-l); }

  .h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 700; line-height: 1.2;
    letter-spacing: -.025em; color: var(--ink);
  }
  .h2 em { font-style: normal; color: var(--blue); }
  .h2.light { color: var(--white); }

  .lead {
    font-size: 1.05rem; line-height: 1.8;
    color: var(--gray-500); max-width: 540px;
    margin-top: .9rem;
  }
  .lead.light { color: rgba(255,255,255,.6); }

  /* =============================================
     BUTTONS
  ============================================= */
  .btn {
    display: inline-flex; align-items: center; gap: .5rem;
    font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
    padding: .82rem 1.75rem; border-radius: 8px;
    border: none; cursor: pointer; transition: all var(--t);
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--blue); color: var(--white);
  }
  .btn-primary:hover { background: var(--blue-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,84,80,.3); }

  .btn-orange {
    background: var(--orange); color: var(--white);
  }
  .btn-orange:hover { background: var(--orange-l); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,84,80,.3); }

  .btn-ghost {
    background: transparent; color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,.7); color: var(--white); }

  .btn-light {
    background: var(--white); color: var(--ink);
  }
  .btn-light:hover { background: var(--gray-100); transform: translateY(-1px); }

  .btn-outline-dark {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--gray-300);
  }
  .btn-outline-dark:hover { border-color: var(--ink); }

  /* =============================================
     NAVIGATION
  ============================================= */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 6vw;
    background: rgba(10,10,10,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: background var(--t);
  }
  .nav-logo {
    display: flex; align-items: center; gap: .55rem;
    font-family: 'Sora', sans-serif; font-size: 1.35rem; font-weight: 800;
    color: var(--white); letter-spacing: -.04em;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 32px; height: 32px; flex-shrink: 0;
    display: block;
  }
  .nav-logo-text { display: inline-block; white-space: nowrap; }
  .nav-logo-text em { font-style: normal; color: var(--blue-xl); }
  .footer-brand .nav-logo-mark { width: 36px; height: 36px; }
  .footer-brand .nav-logo { font-size: 1.5rem; }
  .nav-links {
    display: flex; align-items: center; gap: 2.25rem;
  }
  .nav-links a {
    font-size: .875rem; font-weight: 500;
    color: rgba(255,255,255,.7);
    transition: color var(--t);
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta { margin-left: .75rem; }

  /* Burger */
  .burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .burger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--t); }
  .mob-menu {
    display: none; position: fixed; inset: 70px 0 0 0; z-index: 199;
    background: var(--ink); padding: 2rem 6vw; overflow-y: auto;
  }
  .mob-menu.open { display: block; }
  .mob-menu a {
    display: block; color: rgba(255,255,255,.85); font-size: 1rem;
    font-weight: 500; padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
    transition: color var(--t);
  }
  .mob-menu a:hover { color: var(--blue-xl); }
  .mob-menu .mob-cta { margin-top: 1.5rem; display: inline-flex; }

  /* =============================================
     HERO
  ============================================= */
  .hero {
    min-height: 100vh;
    background: var(--ink);
    display: flex; align-items: center;
    padding: 110px 6vw 80px;
    position: relative; overflow: hidden;
    isolation: isolate;
  }
  /* Couche 1 : aurora animee (gradient coral / noir) */
  .hero-aurora {
    position: absolute; inset: -20%; z-index: 0;
    pointer-events: none;
    background:
      radial-gradient(40vmax 40vmax at 20% 20%, rgba(232,84,80,.42), transparent 60%),
      radial-gradient(35vmax 35vmax at 80% 30%, rgba(244,117,113,.28), transparent 65%),
      radial-gradient(45vmax 45vmax at 60% 85%, rgba(232,84,80,.22), transparent 65%),
      radial-gradient(30vmax 30vmax at 10% 90%, rgba(255,180,177,.12), transparent 70%);
    filter: blur(40px) saturate(120%);
    animation: auroraDrift 32s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes auroraDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1); }
    50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
    100% { transform: translate3d(2%, -2%, 0) scale(1.02); }
  }
  /* Couche 2 : halo accent fixe */
  .hero::before {
    content: '';
    position: absolute; top: -120px; right: -100px;
    width: 700px; height: 700px; z-index: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(232,84,80,.22) 0%, transparent 68%);
    border-radius: 50%; pointer-events: none;
    mix-blend-mode: screen;
  }
  /* Couche 3 : grille tech subtile */
  .hero-grid-line {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  }
  /* Couche 4 : grain filmique (SVG inline, 0 requete reseau) */
  .hero-grain {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    opacity: .18; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }
  /* Accessibilite : respecter le reglage utilisateur */
  @media (prefers-reduced-motion: reduce) {
    .hero-aurora { animation: none; }
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: 900px;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: .6rem;
    background: rgba(232,84,80,.18);
    border: 1px solid rgba(255,180,177,.35);
    color: var(--blue-xl); font-size: .78rem; font-weight: 600;
    padding: .45rem 1.1rem; border-radius: 100px;
    margin-bottom: 2rem; letter-spacing: .05em; text-transform: uppercase;
    backdrop-filter: blur(6px);
  }
  .hero-badge::before {
    content: ''; width: 7px; height: 7px;
    background: var(--blue-l); border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow: 0 0 12px rgba(244,117,113,.8);
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
  }
  .hero .display { margin-bottom: 1.5rem; }
  .hero .lead { margin-bottom: 2.5rem; font-size: 1.1rem; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4.5rem; }

  .hero-proof {
    display: flex; gap: 3.5rem; flex-wrap: wrap;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .proof-item {}
  .proof-val {
    font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
    color: var(--white); letter-spacing: -.03em; line-height: 1;
  }
  .proof-val span { color: var(--blue-xl); }
  .proof-label {
    font-size: .8rem; color: rgba(255,255,255,.45);
    margin-top: .3rem; font-weight: 400;
  }

  /* =============================================
     SECTION COMMUNES
  ============================================= */
  section { padding: 96px 6vw; }
  .section-header { margin-bottom: 3.5rem; }
  .section-header.center { text-align: center; }
  .section-header.center .lead { margin: .9rem auto 0; }

  /* =============================================
     LE CONSTAT
  ============================================= */
  #constat { background: var(--cream); }
  .constat-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
  }
  .constat-card {
    background: var(--white); border-radius: var(--r);
    padding: 2.25rem 2rem;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    position: relative; overflow: hidden;
    transition: all var(--t);
  }
  .constat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
  .constat-num {
    font-family: 'Sora', sans-serif; font-size: 3.5rem; font-weight: 800;
    color: var(--gray-100); letter-spacing: -.04em;
    line-height: 1; margin-bottom: 1.25rem;
    position: relative; z-index: 0;
  }
  .constat-card h3 {
    font-size: 1rem; font-weight: 700; color: var(--ink);
    margin-bottom: .6rem; position: relative; z-index: 1;
  }
  .constat-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }
  .constat-cta {
    margin-top: 3rem;
    background: var(--ink);
    border-radius: var(--r); padding: 2.5rem 3rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .constat-cta h3 {
    font-size: 1.25rem; font-weight: 700; color: var(--white);
    margin-bottom: .4rem;
  }
  .constat-cta p { font-size: .9rem; color: rgba(255,255,255,.5); }

  /* =============================================
     NOTRE APPROCHE
  ============================================= */
  #approche { background: var(--white); }
  .approche-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .approche-card {
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r); padding: 2rem;
    display: flex; gap: 1.25rem;
    transition: all var(--t);
  }
  .approche-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
  .approche-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(232,84,80,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
  }
  .approche-icon i { font-size: 1.55rem; line-height: 1; }
  .approche-card h3 { font-size: .975rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
  .approche-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.7; }

  /* =============================================
     NOS MARCHES
  ============================================= */
  #marches { background: var(--ink2); }
  .marches-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .marches-grid.marches-grid-2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
  .marche-link {
    display: inline-flex; align-items: center; gap: .35rem;
    margin-top: 1.5rem; font-size: .85rem; font-weight: 600;
    color: var(--blue-xl); border-bottom: 1px solid rgba(255,180,177,.3);
    padding-bottom: .25rem; transition: all var(--t);
  }
  .marche-link:hover { color: var(--white); border-color: var(--white); }
  .marche-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r); padding: 2.25rem;
    transition: all var(--t); position: relative; overflow: hidden;
  }
  .marche-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--blue-xl));
    transform: scaleX(0); transform-origin: left;
    transition: transform var(--t);
  }
  .marche-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,180,177,.3); }
  .marche-card:hover::after { transform: scaleX(1); }
  .marche-picto {
    margin-bottom: 1.25rem;
    display: block; line-height: 1;
    color: var(--blue-xl);
  }
  .marche-picto i { font-size: 2.2rem; line-height: 1; }
  .marche-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--white);
    margin-bottom: .5rem;
  }
  .marche-card p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 1.4rem; }
  .marche-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
  .marche-tag {
    font-size: .72rem; font-weight: 600;
    color: var(--blue-xl);
    background: rgba(255,180,177,.1);
    padding: .25rem .7rem; border-radius: 100px;
    letter-spacing: .02em;
  }

  /* =============================================
     COMMENT ON TRAVAILLE
  ============================================= */
  #methode { background: var(--gray-50); }
  .methode-hugo {
    display: grid; grid-template-columns: 120px 1fr; gap: 1.5rem;
    align-items: center; max-width: 780px; margin: 0 auto 3rem;
    padding: 2rem; background: var(--white);
    border-radius: var(--r); box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--blue);
  }
  .methode-quote {
    width: 120px; height: 120px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', serif; font-size: 8rem; font-weight: 800;
    color: var(--blue); line-height: 1;
    padding-top: .4em;
  }
  .methode-signature p { font-size: 1.05rem; line-height: 1.6; color: var(--ink); font-style: italic; margin-bottom: .8rem; }
  .methode-signature span { font-size: .85rem; font-weight: 600; color: var(--blue); }
  .steps { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
  .step {
    display: flex; gap: 2rem; align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .step:last-child { border: none; }
  .step-num {
    font-family: 'Sora', sans-serif; font-size: 2.25rem; font-weight: 800;
    color: var(--gray-100); flex-shrink: 0; width: 52px;
    line-height: 1; padding-top: .2rem;
    letter-spacing: -.04em;
  }
  .step-body h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: .4rem; }
  .step-body p { font-size: .875rem; color: var(--gray-500); line-height: 1.75; }
  .step-badge {
    display: inline-block; margin-top: .7rem;
    font-size: .72rem; font-weight: 700; letter-spacing: .05em;
    color: var(--blue); background: rgba(232,84,80,.08);
    padding: .25rem .75rem; border-radius: 100px;
  }


  /* =============================================
     CAS CLIENTS
  ============================================= */
  #cas-clients { background: var(--cream); }
  .cas-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-bottom: 3rem;
  }
  .cas-card {
    background: var(--white); border-radius: var(--r);
    padding: 2rem; border: 1px solid var(--gray-100);
    display: flex; flex-direction: column;
    box-shadow: var(--shadow-sm); transition: all var(--t);
  }
  .cas-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-xl); }
  .cas-tag {
    display: inline-block; font-size: .7rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--orange); margin-bottom: 1rem;
  }
  .cas-card h3 {
    font-size: 1.1rem; font-weight: 700; color: var(--ink);
    margin-bottom: .8rem; line-height: 1.35;
  }
  .cas-context {
    font-size: .88rem; color: var(--gray-700); line-height: 1.6;
    margin-bottom: 1.5rem; flex-grow: 1;
  }
  .cas-result {
    border-top: 1px solid var(--gray-100); padding-top: 1.2rem;
    display: flex; flex-direction: column; gap: .6rem;
  }
  .cas-result > div { display: flex; justify-content: space-between; align-items: baseline; }
  .cas-result span { font-size: .78rem; color: var(--gray-500); }
  .cas-result strong { font-size: .88rem; font-weight: 700; color: var(--ink); }
  .cas-cta {
    text-align: center; padding: 2rem 0;
    display: flex; flex-direction: column; gap: 1rem; align-items: center;
  }
  .cas-cta p { font-size: 1.05rem; color: var(--ink); font-weight: 600; }

  /* =============================================
     CANDIDATS
  ============================================= */
  #candidats { background: var(--white); }
  .candidats-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .candidat-list { display: flex; flex-direction: column; gap: 1rem; }
  .candidat-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.4rem; border-radius: var(--r);
    border: 1px solid var(--gray-100);
    transition: all var(--t);
  }
  .candidat-item:hover { border-color: var(--blue); background: rgba(232,84,80,.02); }
  .ci-icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 9px; background: rgba(232,84,80,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); margin-top: .1rem;
  }
  .ci-icon i { font-size: 1.3rem; line-height: 1; }
  .ci-body h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: .25rem; }
  .ci-body p { font-size: .825rem; color: var(--gray-500); line-height: 1.6; }
  .candidats-cta-box {
    background: var(--ink); border-radius: 14px;
    padding: 3rem 2.5rem; position: relative; overflow: hidden;
  }
  .candidats-cta-box::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(232,84,80,.25) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .candidats-cta-box .eyebrow { margin-bottom: .9rem; }
  .candidats-cta-box h3 {
    font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700;
    color: var(--white); line-height: 1.25; margin-bottom: 1rem;
  }
  .candidats-cta-box p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 2rem; }
  .candidats-cta-box .btn { position: relative; z-index: 1; }

  /* =============================================
     CONTACT
  ============================================= */
  #contact { background: var(--cream); }
  .contact-layout {
    display: grid; grid-template-columns: 1fr 1.45fr; gap: 5rem; align-items: start;
  }
  .contact-left .lead { margin-bottom: 2.5rem; max-width: 400px; }
  .contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
  .cd-item {
    display: flex; align-items: center; gap: 1rem;
  }
  .cd-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 9px; background: rgba(232,84,80,.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue);
  }
  .cd-icon i { font-size: 1.2rem; line-height: 1; }
  .cd-label { font-size: .78rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; }
  .cd-val { font-size: .9rem; font-weight: 500; color: var(--ink); }
  .cd-val a { color: var(--ink); transition: color var(--t); }
  .cd-val a:hover { color: var(--blue); }

  /* Form */
  .form-wrap {
    background: var(--white); border-radius: 14px;
    padding: 2.75rem; box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
  }
  .form-wrap h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--ink);
    margin-bottom: 1.75rem;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fg { margin-bottom: 1.15rem; }
  .fg label {
    display: block; font-size: .8rem; font-weight: 600;
    color: var(--gray-700); margin-bottom: .4rem; letter-spacing: .01em;
  }
  .fg input, .fg select, .fg textarea {
    width: 100%; padding: .78rem 1rem;
    border: 1.5px solid var(--gray-100);
    border-radius: 8px; font-family: 'Inter', sans-serif;
    font-size: .9rem; color: var(--ink);
    background: var(--gray-50);
    outline: none; transition: border-color var(--t), background var(--t);
    -webkit-appearance: none;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--blue); background: var(--white);
  }
  .fg textarea { resize: vertical; min-height: 120px; }
  .fg select { cursor: pointer; }
  .form-submit {
    width: 100%; font-family: 'Inter', sans-serif;
    font-size: .9rem; font-weight: 700;
    background: var(--ink); color: var(--white);
    padding: 1rem; border: none; border-radius: 8px;
    cursor: pointer; transition: all var(--t);
    letter-spacing: .01em;
  }
  .form-submit:hover { background: var(--blue); transform: translateY(-1px); }
  .form-note { font-size: .78rem; color: var(--gray-500); margin-top: .9rem; text-align: center; line-height: 1.6; }
  .form-success {
    display: none; background: #ECFDF5; border: 1px solid #6EE7B7;
    border-radius: 8px; padding: 1.1rem 1.4rem; margin-bottom: 1.25rem;
    color: #065F46; font-size: .875rem; line-height: 1.5;
    align-items: center; gap: .55rem;
  }
  .form-success i { font-size: 1.3rem; line-height: 1; color: #059669; }
  .form-success.show { display: flex; }
  /* overridden above to display flex with icon */
  .form-err {
    display: none; background: #FEF2F2; border: 1px solid #FCA5A5;
    border-radius: 8px; padding: 1.1rem 1.4rem; margin-bottom: 1.25rem;
    color: #7F1D1D; font-size: .875rem;
  }
  .form-err.show { display: block; }

  /* =============================================
     FOOTER
  ============================================= */
  footer {
    background: var(--ink); padding: 4rem 6vw 2.5rem;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-top {
    display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem; padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .footer-brand .nav-logo { margin-bottom: .8rem; }
  .footer-brand p { font-size: .83rem; color: rgba(255,255,255,.38); line-height: 1.7; max-width: 210px; }
  .footer-col h4 {
    font-size: .72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: rgba(255,255,255,.35);
    margin-bottom: 1rem;
  }
  .footer-col a {
    display: block; font-size: .83rem; color: rgba(255,255,255,.55);
    margin-bottom: .55rem; transition: color var(--t);
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem; padding-top: 2rem;
  }
  .footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.28); }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { font-size: .78rem; color: rgba(255,255,255,.28); transition: color var(--t); }
  .footer-legal a:hover { color: rgba(255,255,255,.6); }

  /* =============================================
     ANIMATIONS
  ============================================= */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: .1s; }
  .reveal-d2 { transition-delay: .2s; }
  .reveal-d3 { transition-delay: .3s; }

  /* =============================================
     RESPONSIVE
  ============================================= */
  @media (max-width: 1024px) {
    .constat-grid { grid-template-columns: 1fr 1fr; }
    .marches-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }
    .constat-grid { grid-template-columns: 1fr; }
    .approche-grid { grid-template-columns: 1fr; }
    .marches-grid { grid-template-columns: 1fr; }
    .candidats-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-proof { gap: 2rem; }
    .constat-cta { flex-direction: column; }
  }
  @media (max-width: 480px) {
    section { padding: 64px 5vw; }
    .hero { padding: 100px 5vw 64px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; text-align: center; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
  }

  /* =============================================
     PAGE EXPERTISE (sales-gtm, finance-aec)
  ============================================= */
  .sub-hero {
    background: var(--ink);
    padding: 140px 6vw 90px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .sub-hero::before {
    content: '';
    position: absolute; top: -120px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse at 50% 50%, rgba(232,84,80,.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .sub-hero-inner { position: relative; z-index: 1; max-width: 820px; }
  .sub-hero .display { color: var(--white); margin-bottom: 1.25rem; }
  .sub-hero .lead { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 640px; margin-bottom: 2.25rem; }
  .sub-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .breadcrumb {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .78rem; color: rgba(255,255,255,.45);
    margin-bottom: 1.5rem;
  }
  .breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t); }
  .breadcrumb a:hover { color: var(--white); }
  .breadcrumb::before {
    content: ''; display: inline-block;
    width: 18px; height: 1px; background: rgba(255,255,255,.3);
  }

  /* Postes grid (roles table-like) */
  .postes-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  }
  .poste-card {
    border: 1.5px solid var(--gray-100);
    border-radius: var(--r); padding: 1.6rem 1.8rem;
    transition: all var(--t);
    background: var(--white);
  }
  .poste-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
  .poste-title { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .35rem; }
  .poste-desc { font-size: .82rem; color: var(--gray-500); line-height: 1.65; }

  /* Secteurs pills */
  .secteurs-wrap { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
  .secteur-pill {
    font-size: .85rem; font-weight: 600;
    color: var(--ink); background: var(--white);
    border: 1.5px solid var(--gray-100);
    padding: .55rem 1.1rem; border-radius: 100px;
    transition: all var(--t);
  }
  .secteur-pill:hover { border-color: var(--blue); color: var(--blue); }

  /* Block split (texte a gauche, liste a droite) */
  .split-layout {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start;
  }
  .split-layout .lead { max-width: none; }

  /* Arguments forts (3 colonnes) */
  .forts-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    margin-top: 2rem;
  }
  .fort-item {
    padding: 1.75rem;
    background: var(--white); border-radius: var(--r);
    border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm);
  }
  .fort-num {
    font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800;
    color: var(--blue); margin-bottom: .6rem; line-height: 1;
  }
  .fort-item h4 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
  .fort-item p { font-size: .85rem; color: var(--gray-500); line-height: 1.7; }

  /* Bloc final CTA expertise */
  .expertise-final-cta {
    background: var(--ink); border-radius: 14px;
    padding: 3.5rem 3rem; text-align: center;
    margin-top: 4rem;
    position: relative; overflow: hidden;
  }
  .expertise-final-cta::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,84,80,.25) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }
  .expertise-final-cta h3 {
    font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 700;
    color: var(--white); margin-bottom: 1rem; position: relative; z-index: 1;
  }
  .expertise-final-cta p {
    font-size: .95rem; color: rgba(255,255,255,.6);
    max-width: 520px; margin: 0 auto 2rem;
    position: relative; z-index: 1;
  }
  .expertise-final-cta .btn { position: relative; z-index: 1; }

  @media (max-width: 1024px) {
    .postes-grid { grid-template-columns: 1fr; }
    .forts-grid { grid-template-columns: 1fr; }
    .split-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 768px) {
    .sub-hero { padding: 120px 6vw 70px; }
    .methode-hugo { grid-template-columns: 1fr; text-align: center; border-left: 0; border-top: 3px solid var(--blue); }
    .methode-quote { margin: 0 auto; }
    .cas-grid { grid-template-columns: 1fr; }
    .expertise-final-cta { padding: 2.5rem 1.75rem; }
  }
