
  * { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --black: #FFFFFF;
    --gray-text: #B0B0B0;
    --gray-border: #2A2A2A;
    --gray-bg: #151515;
    --white: #000000;
    --accent: #3B82F6;
    --accent-soft: rgba(59, 130, 246, 0.12);
    --accent-mid: rgba(59, 130, 246, 0.4);
    --success: #22C55E;
    --success-soft: rgba(34, 197, 94, 0.15);
    --warn: #F59E0B;
    --warn-soft: rgba(245, 158, 11, 0.15);
  }

  body {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img { max-width: 100%; display: block; }
  svg { display: block; }

  /* ===== HEADER ===== */
  header {
    position: sticky;
    top: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-border);
    z-index: 100;
    padding: 14px 80px;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1760px;
    margin: 0 auto;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
  }
  .logo-img {
    height: 64px;
    width: auto;
    display: block;
    /* The logo is white text on a solid black JPEG. screen blend drops the
       black backdrop into the dark header while keeping the text identical. */
    mix-blend-mode: screen;
    transition: opacity 0.3s ease;
  }
  .logo:hover .logo-img { opacity: 0.85; }
  /* Header right area — premium pill nav */

  .header-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 6px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
    box-shadow:
      0 4px 24px -8px rgba(0,0,0,0.4),
      inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .header-link {
    position: relative;
    /* WCAG 2.2 target-size ≥ 24×24 — bump le padding pour garantir la cible */
    padding: 12px 20px;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-text);
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.01em;
  }
  .header-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
  }
  .header-link:hover {
    color: var(--black);
    transform: translateY(-1px);
  }
  .header-link:hover::before {
    opacity: 1;
  }
  /* Active dot indicator after each link except CTA */
  .header-link:not(:last-of-type)::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
  }
  .header-cta {
    margin-left: 4px;
    padding: 10px 22px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow:
      0 4px 16px -4px rgba(255,255,255,0.18),
      inset 0 1px 0 rgba(255,255,255,0.35);
  }
  .header-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }
  .header-cta:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow:
      0 8px 28px -6px rgba(255,255,255,0.45),
      inset 0 1px 0 rgba(255,255,255,0.5);
  }
  .header-cta:hover::after {
    opacity: 1;
  }
  .header-cta .arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
  }
  .header-cta:hover .arrow { transform: translateX(4px); }

  /* ===== TABS NAVIGATION ===== */
  /* ===== FILTERS BAR (minimaliste éditorial) ===== */
  .filters-section {
    position: sticky;
    top: 90px;
    z-index: 90;
    padding: 18px 80px;
    /* floating-glass effect: semi-translucent dark + backdrop blur,
       soft shadow below for lift, 1px top highlight = edge of glass */
    background: rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
      0 14px 36px -14px rgba(0, 0, 0, 0.7),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }
  .filters-inner {
    max-width: 1760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }
  .filters-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: 100%;
  }
  .filters-list::-webkit-scrollbar { display: none; }
  .filter {
    padding: 8px 14px;
    color: var(--gray-text);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.005em;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 6px;
    transition: all 0.18s ease;
    position: relative;
  }
  .filter:hover {
    color: var(--black);
    background: var(--gray-bg);
  }
  .filter.active {
    color: var(--white);
    background: var(--black);
    font-weight: 500;
  }
  .filters-divider {
    width: 1px;
    height: 16px;
    background: var(--gray-border);
    flex-shrink: 0;
  }
  .filters-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
  }
  .filters-count {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .filters-count strong {
    color: var(--black);
    font-weight: 600;
  }
  .filters-sort {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-text);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.15s;
  }
  .filters-sort:hover { background: var(--gray-bg); color: var(--black); }
  .filters-sort svg {
    width: 12px;
    height: 12px;
  }

  /* ===== MAIN CONTAINER ===== */
  main { padding: clamp(28px, 4vw, 44px) clamp(24px, 6vw, 80px); max-width: 1760px; margin: 0 auto; }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    /* tight top spacing (removed the dead zone above the eyebrow) */
    padding: clamp(24px, 3.5vw, 48px) 80px clamp(60px, 8vw, 104px);
    overflow: hidden;
    border-bottom: 1px solid var(--gray-border);
  }
  .hero-glow {
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: min(960px, 92vw);
    height: 520px;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-glow::after {
    content: '';
    position: absolute;
    bottom: -220px;
    right: -8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 70%);
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1760px;
    margin: 0 auto;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
    padding: 8px 16px;
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    background: rgba(255,255,255,0.02);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
  }
  .hero-title {
    font-size: clamp(34px, 5.4vw, 62px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.06;
    margin-bottom: 22px;
    max-width: 17ch;
  }
  .hero-accent {
    background: linear-gradient(120deg, var(--accent) 0%, #8FB8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.65;
    color: var(--gray-text);
    max-width: 56ch;
    margin-bottom: 36px;
  }
  .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 56px;
  }
  .hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--black);
    color: var(--white);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 28px -8px rgba(255,255,255,0.3);
  }
  .hero-cta-primary span { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px -8px rgba(255,255,255,0.45);
  }
  .hero-cta-primary:hover span { transform: translateX(4px); }
  .hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    border: 1px solid var(--gray-border);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    background: rgba(255,255,255,0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero-cta-secondary:hover {
    border-color: var(--black);
    background: rgba(255,255,255,0.06);
    transform: translateY(-2px);
  }
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .hero-stat strong {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--black);
  }
  .hero-stat span {
    font-size: 13px;
    color: var(--gray-text);
  }
  .hero-stat:not(:last-child) {
    padding-right: 40px;
    border-right: 1px solid var(--gray-border);
  }
  /* Right-hand brand block: logo (moved up) + contact + client wall.
     screen blend removes the black JPEG backdrop (same as header logo). */
  .hero-aside {
    position: absolute;
    top: 4px;
    right: 0;
    width: clamp(300px, 32vw, 480px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 26px;
    animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
  }
  .hero-logo {
    width: clamp(240px, 26vw, 440px);
    height: auto;
    mix-blend-mode: screen;
    opacity: 0.92;
    pointer-events: none;
    user-select: none;
  }
  .hero-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 9px;
  }
  .hero-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-text);
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .hero-contact a svg { width: 15px; height: 15px; opacity: 0.65; flex-shrink: 0; }
  .hero-contact a:hover { color: var(--black); }
  .hero-contact a:hover svg { opacity: 1; }
  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 8px;
    border: 1px solid var(--gray-border);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    opacity: 0.5;
    text-align: center;
    line-height: 1.15;
    transition: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  }
  .client-logo:hover {
    opacity: 0.95;
    border-color: rgba(255,255,255,0.22);
    transform: translateY(-2px);
  }
  img.client-logo {
    object-fit: contain;
    /* logos provided on white background -> invert to white-on-dark
       (white -> near-black blends with the dark chip, dark content -> light) */
    filter: grayscale(1) invert(1) brightness(1.05) contrast(0.95);
    padding: 8px 10px;
    opacity: 0.85;
    mix-blend-mode: normal;
  }
  img.client-logo:hover {
    filter: none;
    opacity: 1;
  }
  @media (max-width: 1100px) {
    /* Show the brand block on mobile/tablet, full-width below the hero
       content (flex order moves it after eyebrow/title/sub/cta/stats). */
    .hero-inner { display: flex; flex-direction: column; }
    .hero-eyebrow { align-self: flex-start; }
    .hero-aside {
      position: static;
      order: 10;
      width: 100%;
      align-items: flex-start;
      text-align: left;
      margin: 48px 0 0;
      padding-top: 36px;
      border-top: 1px solid var(--gray-border);
      gap: 22px;
    }
    .hero-contact { align-items: flex-start; }
    .hero-logo { width: clamp(200px, 56vw, 320px); }
  }

  /* ===== GRID OFFRES (Airbnb cards) ===== */
  .grid-section { margin-bottom: clamp(48px, 7vw, 80px); }
  .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(16px, 2.5vw, 28px);
  }
  .section-title h2 {
    font-size: clamp(20px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .section-title a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
  }

  .card {
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.2, 0.85, 0.25, 1);
    will-change: transform;
  }
  .card:hover {
    transform: translateY(-6px);
  }
  .card-image-bg {
    transition: background 0.4s ease, box-shadow 0.5s ease;
  }
  .card:hover .card-image-bg {
    box-shadow: 0 16px 44px -12px rgba(59,130,246,0.20), 0 0 0 1px rgba(59,130,246,0.10);
  }
  .card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
  }
  .card-image-bg {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, #1c1c1c 0%, #101010 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
  }
  .card-image-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* deeper vignette + crisp top edge = more relief / 3D */
    box-shadow:
      inset 0 0 78px rgba(0,0,0,0.62),
      inset 0 1px 0 rgba(255,255,255,0.06),
      inset 0 -1px 0 rgba(0,0,0,0.5);
    pointer-events: none;
    z-index: 2;
  }
  /* subtle blue ambience on hover (replaces the old white flash) */
  .card:hover .card-image-bg {
    background: radial-gradient(ellipse at 50% 28%, #1a2942 0%, #0c1118 70%, #090c12 100%);
  }
  .card-image-bg svg {
    width: 100%;
    height: 100%;
    color: var(--black);
    display: block;
    /* grounded depth + smooth 3D-ish lift on hover */
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.55));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s ease;
    transform: translateZ(0);
  }
  .card:hover .card-image-bg svg {
    transform: scale(1.035);
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.6)) drop-shadow(0 0 14px rgba(59,130,246,0.20));
  }
  /* 3D depth helpers - isometric faces from upper-right viewpoint */

  /* ========= ANIMATIONS PAR CATEGORIE ========= */

  .card-image-bg svg text { font-family: ui-monospace, 'SF Mono', Menlo, monospace; }

  /* 1. AUDIT */
  @keyframes bar-cycle {
    0% { transform: scaleY(0.2); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0.2); }
  }
  @keyframes line-draw {
    0% { stroke-dashoffset: 240; }
    50%, 100% { stroke-dashoffset: 0; }
  }
  @keyframes dot-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.6); }
  }
  @keyframes kpi-blink {
    0%, 88%, 100% { opacity: 1; }
    92% { opacity: 0; }
  }
  @keyframes badge-glow {
    0%, 100% { fill-opacity: 0.18; }
    50% { fill-opacity: 0.32; }
  }
  .anim-audit .bar { transform-origin: bottom; transform-box: fill-box; }
  .anim-audit .bar:nth-of-type(1) { animation: bar-cycle 4s ease-in-out infinite; }
  .anim-audit .bar:nth-of-type(2) { animation: bar-cycle 4s ease-in-out infinite 0.18s; }
  .anim-audit .bar:nth-of-type(3) { animation: bar-cycle 4s ease-in-out infinite 0.36s; }
  .anim-audit .bar:nth-of-type(4) { animation: bar-cycle 4s ease-in-out infinite 0.54s; }
  .anim-audit .bar:nth-of-type(5) { animation: bar-cycle 4s ease-in-out infinite 0.72s; }
  .anim-audit .bar:nth-of-type(6) { animation: bar-cycle 4s ease-in-out infinite 0.9s; }
  .anim-audit .trend-line {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    animation: line-draw 4s ease-in-out infinite;
  }
  .anim-audit .trend-dot {
    animation: dot-pulse 1.6s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
  .anim-audit .kpi-cursor { animation: kpi-blink 1.2s steps(1) infinite; }
  .anim-audit .pos-badge { animation: badge-glow 2.5s ease-in-out infinite; }

  /* 2. SITE INTERNET */
  @keyframes draw-stroke {
    0% { stroke-dashoffset: 280; }
    40%, 100% { stroke-dashoffset: 0; }
  }
  @keyframes fade-up {
    0%, 25% { opacity: 0; transform: translateY(3px); }
    45%, 100% { opacity: 1; transform: translateY(0); }
  }
  @keyframes cursor-path {
    0% { transform: translate(50px, 80px); }
    20% { transform: translate(80px, 110px); }
    40% { transform: translate(60px, 155px); }
    60% { transform: translate(120px, 168px); }
    80% { transform: translate(180px, 168px); }
    100% { transform: translate(50px, 80px); }
  }
  @keyframes cta-tick {
    0%, 80%, 100% { fill: var(--white); }
    85%, 95% { fill: var(--accent-soft); }
  }
  .anim-site .reveal-block {
    animation: fade-up 5s ease-in-out infinite;
    transform-origin: center;
  }
  .anim-site .reveal-block:nth-of-type(2) { animation-delay: 0.3s; }
  .anim-site .reveal-block:nth-of-type(3) { animation-delay: 0.6s; }
  .anim-site .reveal-block:nth-of-type(4) { animation-delay: 0.9s; }
  .anim-site .reveal-block:nth-of-type(5) { animation-delay: 1.2s; }
  .anim-site .reveal-block:nth-of-type(6) { animation-delay: 1.5s; }
  .anim-site .stroke-block {
    stroke-dasharray: 280;
    stroke-dashoffset: 280;
    animation: draw-stroke 5s ease-in-out infinite;
  }
  .anim-site .cursor {
    animation: cursor-path 8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  }
  .anim-site .cta-rect { animation: cta-tick 8s ease-in-out infinite; }

  /* 3. APP MOBILE */
  @keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(-1.5deg); }
    50% { transform: translateY(-3px) rotate(1.5deg); }
  }
  @keyframes notify-slide {
    0% { transform: translateX(-12px); opacity: 0; }
    8%, 75% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(0); opacity: 0; }
  }
  @keyframes notify-slide-r {
    0% { transform: translateX(12px); opacity: 0; }
    8%, 75% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(0); opacity: 0; }
  }
  @keyframes tap-ripple {
    0% { transform: scale(0.3); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  @keyframes tap-finger {
    0%, 60%, 100% { transform: translate(0, 0); }
    65%, 80% { transform: translate(0, -3px); }
  }
  @keyframes badge-pop {
    0%, 70%, 100% { transform: scale(0); opacity: 0; }
    78%, 92% { transform: scale(1); opacity: 1; }
  }
  .anim-app .phone-body { animation: phone-float 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .anim-app .notif-card { transform-box: fill-box; transform-origin: center; opacity: 0; }
  .anim-app .notif-card.from-left { animation: notify-slide 5s ease-out infinite; }
  .anim-app .notif-card.from-right { animation: notify-slide-r 5s ease-out infinite 1.6s; }
  .anim-app .notif-card.from-left.late { animation: notify-slide 5s ease-out infinite 3.2s; }
  .anim-app .tap-ring {
    transform-origin: center;
    transform-box: fill-box;
    animation: tap-ripple 2.4s ease-out infinite;
  }
  .anim-app .finger { animation: tap-finger 2.4s ease-in-out infinite; transform-origin: center top; transform-box: fill-box; }
  .anim-app .live-badge { animation: badge-pop 2.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

  /* 4. SEO */
  @keyframes radar-sweep {
    0% { transform: rotate(-90deg); }
    100% { transform: rotate(270deg); }
  }
  @keyframes ring-out {
    0% { transform: scale(0.2); opacity: 0.9; }
    100% { transform: scale(1.8); opacity: 0; }
  }
  @keyframes pin-drop {
    0%, 10% { transform: translateY(-12px); opacity: 0; }
    25%, 95% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(0); opacity: 0; }
  }
  @keyframes pin-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
  }
  @keyframes star-fill {
    0%, 60% { transform: scale(0); }
    72%, 100% { transform: scale(1); }
  }
  @keyframes count-tick {
    0%, 30% { opacity: 0; }
    40%, 100% { opacity: 1; }
  }
  .anim-seo .radar-cone {
    transform-origin: 120px 110px;
    animation: radar-sweep 4s linear infinite;
  }
  .anim-seo .ripple {
    transform-origin: 120px 110px;
    animation: ring-out 3s ease-out infinite;
  }
  .anim-seo .ripple:nth-of-type(2) { animation-delay: 1s; }
  .anim-seo .ripple:nth-of-type(3) { animation-delay: 2s; }
  .anim-seo .main-pin {
    animation: pin-pulse 2s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
  }
  .anim-seo .nearby-pin {
    transform-box: fill-box;
    transform-origin: center bottom;
    opacity: 0;
  }
  .anim-seo .nearby-pin:nth-of-type(1) { animation: pin-drop 5s ease-out infinite 0.6s; }
  .anim-seo .nearby-pin:nth-of-type(2) { animation: pin-drop 5s ease-out infinite 1.4s; }
  .anim-seo .nearby-pin:nth-of-type(3) { animation: pin-drop 5s ease-out infinite 2.2s; }
  .anim-seo .star {
    transform-box: fill-box;
    transform-origin: center;
  }
  .anim-seo .star:nth-of-type(1) { animation: star-fill 5s ease-out infinite; }
  .anim-seo .star:nth-of-type(2) { animation: star-fill 5s ease-out infinite 0.15s; }
  .anim-seo .star:nth-of-type(3) { animation: star-fill 5s ease-out infinite 0.3s; }
  .anim-seo .star:nth-of-type(4) { animation: star-fill 5s ease-out infinite 0.45s; }
  .anim-seo .star:nth-of-type(5) { animation: star-fill 5s ease-out infinite 0.6s; }
  .anim-seo .count-up { animation: count-tick 5s ease-in-out infinite; }

  /* 5. COMMUNITY MANAGER */
  @keyframes orbit-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes counter-rotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
  @keyframes core-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
  }
  @keyframes count-up {
    0%, 30% { opacity: 0.4; }
    50%, 100% { opacity: 1; }
  }
  .anim-cm .orbit { animation: orbit-rotate 14s linear infinite; transform-origin: 120px 120px; }
  .anim-cm .platform { animation: counter-rotate 14s linear infinite; transform-box: fill-box; transform-origin: center; }
  .anim-cm .core { animation: core-pulse 2.5s ease-in-out infinite; transform-box: fill-box; transform-origin: 120px 120px; }
  .anim-cm .live-count { animation: count-up 3s ease-in-out infinite; }

  /* 6. ACQUISITION */
  @keyframes lead-fall-1 {
    0% { transform: translate(-30px, -10px); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(0, 150px); opacity: 0; }
  }
  @keyframes lead-fall-2 {
    0% { transform: translate(0, -10px); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(0, 150px); opacity: 0; }
  }
  @keyframes lead-fall-3 {
    0% { transform: translate(30px, -10px); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(0, 150px); opacity: 0; }
  }
  @keyframes qualified-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
  }
  @keyframes scan-line {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(36px); opacity: 0.2; }
  }
  .anim-acq .lead { transform-box: fill-box; opacity: 0; }
  .anim-acq .lead:nth-of-type(1) { animation: lead-fall-1 3.6s linear infinite; }
  .anim-acq .lead:nth-of-type(2) { animation: lead-fall-2 3.6s linear infinite 0.5s; }
  .anim-acq .lead:nth-of-type(3) { animation: lead-fall-3 3.6s linear infinite 1s; }
  .anim-acq .lead:nth-of-type(4) { animation: lead-fall-1 3.6s linear infinite 1.5s; }
  .anim-acq .lead:nth-of-type(5) { animation: lead-fall-2 3.6s linear infinite 2s; }
  .anim-acq .lead:nth-of-type(6) { animation: lead-fall-3 3.6s linear infinite 2.5s; }
  .anim-acq .qualified-out {
    animation: qualified-pulse 1.8s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
  .anim-acq .scan { animation: scan-line 3s ease-in-out infinite; }

  /* 7. AUTOMATISATION */
  @keyframes spin-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes spin-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
  @keyframes spark-fly {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  @keyframes flow-path {
    0% { stroke-dashoffset: 100; }
    100% { stroke-dashoffset: 0; }
  }
  @keyframes signal-blink {
    0%, 50%, 100% { opacity: 0.25; }
    25%, 75% { opacity: 1; }
  }
  @keyframes status-tick {
    0%, 88%, 100% { opacity: 1; }
    93% { opacity: 0; }
  }
  .anim-auto .gear-big { animation: spin-cw 8s linear infinite; transform-origin: center; transform-box: fill-box; }
  .anim-auto .gear-mid { animation: spin-ccw 6s linear infinite; transform-origin: center; transform-box: fill-box; }
  .anim-auto .gear-small { animation: spin-cw 4s linear infinite; transform-origin: center; transform-box: fill-box; }
  .anim-auto .spark { transform-box: fill-box; transform-origin: center; }
  .anim-auto .spark:nth-of-type(1) { animation: spark-fly 1.5s ease-out infinite; }
  .anim-auto .spark:nth-of-type(2) { animation: spark-fly 1.5s ease-out infinite 0.5s; }
  .anim-auto .spark:nth-of-type(3) { animation: spark-fly 1.5s ease-out infinite 1s; }
  .anim-auto .flow { stroke-dasharray: 6 4; animation: flow-path 1s linear infinite; }
  .anim-auto .signal { animation: signal-blink 1.5s ease-in-out infinite; }
  .anim-auto .status-cursor { animation: status-tick 1.2s steps(1) infinite; }

  /* 8. PACK COMPLET */
  @keyframes block-snap {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
  }
  @keyframes connect-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
  }
  @keyframes crown-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
  @keyframes badge-shine {
    0%, 100% { fill-opacity: 1; }
    50% { fill-opacity: 0.85; }
  }
  .anim-pack .block { transform-box: fill-box; transform-origin: center; }
  .anim-pack .block:nth-of-type(1) { animation: block-snap 3s ease-in-out infinite; }
  .anim-pack .block:nth-of-type(2) { animation: block-snap 3s ease-in-out infinite 0.3s; }
  .anim-pack .block:nth-of-type(3) { animation: block-snap 3s ease-in-out infinite 0.6s; }
  .anim-pack .connector { animation: connect-line 2s ease-in-out infinite; }
  .anim-pack .crown { animation: crown-spin 12s linear infinite; transform-origin: center; transform-box: fill-box; }
  .anim-pack .final-badge { animation: badge-shine 2.5s ease-in-out infinite; }

  /* === ANNEX PAGES (modal overlay system) === */
  .annex-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    z-index: 10000;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    opacity: 0;
    transition:
      opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      background 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      backdrop-filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      -webkit-backdrop-filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .annex-modal.is-open {
    /* flex + margin:auto on the child = centered when it fits,
       scrolls from the very top (no clipping) when it overflows */
    display: flex;
    opacity: 1;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
  }
  .annex-modal-inner {
    width: 100%;
    max-width: 920px;
    /* auto margins center the block; vertical padding is part of the
       scrollable content so scrollTop:0 lands above the title and
       clears the fixed close button */
    margin: auto;
    padding: 76px 32px 96px;
    transform: translateY(50px) scale(0.96);
    opacity: 0;
    transition:
      transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s,
      opacity 0.6s ease-out 0.15s;
  }
  .annex-modal.is-open .annex-modal-inner {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  /* Cascade entrance of modal content sections */
  .annex-modal .annex-breadcrumb,
  .annex-modal .annex-title,
  .annex-modal .annex-subtitle,
  .annex-modal .annex-body {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .annex-modal.is-open .annex-breadcrumb { opacity: 0.7; transform: translateY(0); transition-delay: 0.25s; }
  .annex-modal.is-open .annex-title     { opacity: 1;   transform: translateY(0); transition-delay: 0.35s; }
  .annex-modal.is-open .annex-subtitle  { opacity: 1;   transform: translateY(0); transition-delay: 0.45s; }
  .annex-modal.is-open .annex-body      { opacity: 1;   transform: translateY(0); transition-delay: 0.55s; }
  .annex-close {
    position: fixed;
    top: 24px;
    right: 32px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: scale(0.7);
  }
  .annex-modal.is-open .annex-close {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
  }
  .annex-close:hover {
    background: rgba(255,255,255,0.12);
    transform: scale(1.08) rotate(90deg);
    transition-delay: 0s;
  }
  .annex-close svg { width: 20px; height: 20px; }
  .annex-breadcrumb {
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 16px;
  }
  .annex-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }
  .annex-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--black) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .annex-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 40px;
    max-width: 680px;
  }
  .annex-body {
    background: linear-gradient(135deg, rgba(28,28,28,0.6) 0%, rgba(15,15,15,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
  }
  .annex-body h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 32px 0 12px;
    color: var(--black);
  }
  .annex-body h2:first-child { margin-top: 0; }
  .annex-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    margin-bottom: 16px;
  }
  .annex-body ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
  }
  .annex-body li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-text);
    padding: 8px 0 8px 28px;
    position: relative;
  }
  .annex-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent);
    font-weight: 700;
  }
  .annex-body strong { color: var(--black); font-weight: 600; }
  .annex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 24px 0;
  }
  .annex-grid-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }
  .annex-grid-item[data-page] {
    cursor: pointer;
  }
  .annex-grid-item[data-page]::after {
    content: '→';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 16px;
    color: var(--gray-text);
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .annex-grid-item[data-page]:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--black);
  }
  .annex-grid-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
  }
  .annex-grid-item[data-page]:hover {
    border-color: rgba(255,255,255,0.22);
    box-shadow: 0 12px 32px -12px rgba(0,0,0,0.6);
  }
  .annex-grid-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
  }
  .annex-grid-item p {
    font-size: 13px;
    color: var(--gray-text);
    margin: 0;
  }
  /* === RIPPLE EFFECT (subtle pulse on tab/link click) === */
  .ripple-burst {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    transform: scale(0);
    animation: ripple-expand 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  @keyframes ripple-expand {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }
  .filter, .header-link, .header-cta {
    position: relative;
    overflow: hidden;
  }
  /* Smooth filter active state */
  .filter {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .filter:active {
    transform: scale(0.96);
  }
  .annex-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.85, 0.25, 1);
    box-shadow: 0 8px 24px -8px rgba(255,255,255,0.25);
  }
  .annex-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px -8px rgba(255,255,255,0.4);
  }
  .annex-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
  }
  .annex-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .annex-meta-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.7;
  }
  .annex-meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
  }
  body.modal-open { overflow: hidden; }
  @media (max-width: 768px) {
    .annex-modal-inner { margin: auto; padding: 64px 16px 72px; }
    .annex-title { font-size: 32px; }
    .annex-body { padding: 24px; }
    .annex-close { top: 12px; right: 16px; width: 38px; height: 38px; }
  }

  /* ============================================
     === UX LAYER : cursor, scroll, parallax  ===
     ============================================ */

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  /* === Custom cursor (desktop only) === */
  @media (pointer: fine) and (min-width: 768px) {
    body { cursor: none; }
    .cursor-dot, .cursor-ring {
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 100000;
      mix-blend-mode: difference;
      will-change: transform;
    }
    .cursor-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    }
    .cursor-ring {
      width: 36px;
      height: 36px;
      border: 1.5px solid rgba(255,255,255,0.5);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.3s cubic-bezier(0.2, 0.85, 0.25, 1),
                  height 0.3s cubic-bezier(0.2, 0.85, 0.25, 1),
                  border-color 0.3s ease,
                  opacity 0.2s ease,
                  background 0.3s ease;
    }
    body.cursor-hover .cursor-dot {
      width: 0;
      height: 0;
      opacity: 0;
    }
    body.cursor-hover .cursor-ring {
      width: 56px;
      height: 56px;
      border-color: rgba(255,255,255,0.85);
      background: rgba(255,255,255,0.06);
    }
    body.cursor-text .cursor-ring {
      width: 4px;
      height: 28px;
      border-radius: 2px;
      border: none;
      background: rgba(255,255,255,0.85);
    }
    body.cursor-text .cursor-dot { opacity: 0; }
  }
  @media (pointer: coarse), (max-width: 767px) {
    .cursor-dot, .cursor-ring { display: none; }
  }

  /* === Scroll reveal === */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0s; }
  .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.06s; }
  .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.12s; }
  .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.18s; }
  .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.24s; }
  .reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.30s; }
  .reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.36s; }
  .reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.42s; }

  /* === Ambient glow (premium dark depth, site-wide) === */
  .ambient-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
  }
  .ambient-glow.glow-top {
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: min(840px, 90%);
    height: 440px;
    background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 68%);
  }
  .ambient-glow.glow-corner {
    bottom: -200px;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
  }
  .ambient-glow.glow-left {
    top: 8%;
    left: 0;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(59,130,246,0.055) 0%, transparent 70%);
  }
  /* Sections hosting ambient glows */
  .has-glow { position: relative; }
  .has-glow > *:not(.ambient-glow) { position: relative; z-index: 1; }

  /* === Parallax background layer === */
  .bg-parallax {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    background:
      radial-gradient(800px 400px at 20% 0%, rgba(60, 80, 120, 0.08), transparent 60%),
      radial-gradient(700px 350px at 90% 30%, rgba(120, 60, 100, 0.06), transparent 60%),
      radial-gradient(600px 300px at 50% 100%, rgba(60, 120, 100, 0.05), transparent 60%);
    opacity: 0.85;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  /* === Hero parallax === */
  .hero-inner {
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }

  /* === Section title underline animation === */
  .section-title h2 {
    position: relative;
    display: inline-block;
  }
  .section-title h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: width 0.8s cubic-bezier(0.2, 0.85, 0.25, 1) 0.2s;
  }
  .section-title.is-visible h2::after {
    width: 60px;
  }
  .section-title a {
    position: relative;
    transition: color 0.3s ease;
  }
  .section-title a::after {
    content: ' →';
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.25, 1);
  }
  .section-title a:hover::after {
    transform: translateX(4px);
  }

  /* === Hero text micro-animation === */
  @keyframes hero-fadeup {
    0% { opacity: 0; transform: translateY(24px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
  }
  .hero-eyebrow  { animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .hero-title    { animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both; }
  .hero-sub      { animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both; }
  .hero-cta-row  { animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
  .hero-stats    { animation: hero-fadeup 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both; }

  /* === CTA shimmer sweep effect (overlay only, NOT the element itself) === */
  .header-cta::before, .promesse-cta a::before, .reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.2, 0.85, 0.25, 1);
    pointer-events: none;
  }
  .header-cta:hover::before, .promesse-cta a:hover::before, .reserve-btn:hover::before {
    left: 100%;
  }

  /* === Page-wide entrance: subtle fade body in === */
  @keyframes pageEnter {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  body {
    animation: pageEnter 0.5s ease-out both;
  }

  /* === Animated counter (rating, prices) === */
  .counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
  }



  .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--black);
  }
  .card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
  }
  .card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 500;
  }
  .card-segment {
    font-size: 14px;
    color: var(--gray-text);
  }
  .card-pilier {
    font-size: 14px;
    color: var(--gray-text);
  }

  /* ===== BANNIERE PROMESSE ===== */
  .promesse-banner {
    background: linear-gradient(135deg, rgba(28,28,28,0.85) 0%, rgba(15,15,15,0.95) 100%);
    color: var(--black);
    padding: 48px;
    border-radius: 20px;
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
      0 30px 80px -30px rgba(0,0,0,0.7),
      inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
  }
  .promesse-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 300px at 0% 0%, rgba(59,130,246,0.08), transparent 60%),
      radial-gradient(500px 250px at 100% 100%, rgba(34,197,94,0.05), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .promesse-banner > * { position: relative; z-index: 1; }
  .promesse-banner h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--black) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .promesse-banner p {
    font-size: 16px;
    opacity: 0.75;
    line-height: 1.6;
    max-width: 540px;
  }
  .promesse-cta {
    background: var(--black);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.2, 0.85, 0.25, 1), box-shadow 0.3s;
    white-space: nowrap;
    box-shadow: 0 8px 24px -8px rgba(255,255,255,0.25);
  }
  .promesse-cta:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(255,255,255,0.4);
  }

  /* ===== SECTION PILIERS (style "explore") ===== */
  .piliers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
  }
  .pilier-card {
    /* same 2-layer structure as :hover so the transition interpolates
       cleanly (mismatched layer counts caused the hard-edge glitch) */
    background:
      radial-gradient(125% 80% at 50% -12%, rgba(59,130,246,0) 0%, transparent 58%),
      rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
    cursor: pointer;
    transition: background 0.4s cubic-bezier(0.16,1,0.3,1),
                border-color 0.4s cubic-bezier(0.16,1,0.3,1),
                transform 0.4s cubic-bezier(0.16,1,0.3,1),
                box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .pilier-card:hover {
    background:
      radial-gradient(125% 80% at 50% -12%, rgba(59,130,246,0.14) 0%, transparent 58%),
      rgba(255,255,255,0.045);
    border-color: rgba(59,130,246,0.34);
    transform: translateY(-3px);
    box-shadow: 0 18px 50px -26px rgba(59,130,246,0.45);
  }
  .pilier-icon {
    width: 56px;
    height: 56px;
    /* visible chip on the now-transparent card (was #000 on near-#000) */
    background: linear-gradient(150deg, rgba(59,130,246,0.18) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(59,130,246,0.24);
    color: var(--black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: border-color 0.4s cubic-bezier(0.16,1,0.3,1),
                background 0.4s cubic-bezier(0.16,1,0.3,1);
  }
  .pilier-card:hover .pilier-icon {
    background: linear-gradient(150deg, rgba(59,130,246,0.30) 0%, rgba(255,255,255,0.06) 100%);
    border-color: rgba(59,130,246,0.45);
  }
  .pilier-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
  }
  .pilier-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .pilier-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .pilier-card-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
  }

  /* ===== PACK COMPLET (style "pricing tiers") ===== */
  .pack-section {
    margin-bottom: 64px;
  }
  /* ===== PACK COMPLET — Hero "inclus" + 3 tier differentiators ===== */
  .pack-includes {
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 40px 48px;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
  }
  .pack-includes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
  }
  .pack-includes-head {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
  }
  .pack-includes-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 8px;
    opacity: 0.8;
  }
  .pack-includes-head h3 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0;
  }
  .pack-includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 32px;
    position: relative;
    z-index: 1;
  }
  .pack-include {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 4px 0;
  }
  .pack-include-num {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 4px 10px;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
  .pack-include div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .pack-include strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.005em;
  }
  .pack-include span:not(.pack-include-num) {
    font-size: 12px;
    color: var(--gray-text);
    line-height: 1.5;
  }

  /* Tier intro */
  .pack-tier-intro {
    margin-bottom: 20px;
    text-align: center;
  }
  .pack-tier-intro-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-text);
    margin-bottom: 6px;
    opacity: 0.7;
  }
  .pack-tier-intro h3 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin: 0;
  }

  /* 3 tier cards */
  .pack-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pack-tier {
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 32px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .pack-tier:hover {
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    transform: translateY(-3px);
  }
  .pack-tier.popular {
    border-color: rgba(255,255,255,0.25);
    background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 12px 40px -20px rgba(255,255,255,0.15);
  }
  .pack-tier .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .pack-tier-segment {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 4px;
  }
  .pack-tier-people {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 20px;
  }
  .pack-tier-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .pack-tier-amount {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    line-height: 1;
  }
  .pack-tier-unit {
    font-size: 14px;
    color: var(--gray-text);
  }
  .pack-tier-extras {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    flex: 1;
  }
  .pack-tier-extras li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 12px;
  }
  .pack-tier-extras li:last-child { border-bottom: none; }
  .extra-label {
    font-size: 12px;
    color: var(--gray-text);
    flex-shrink: 0;
  }
  .extra-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    text-align: right;
  }
  .pack-cta {
    width: 100%;
    background: var(--black);
    color: var(--white);
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px -4px rgba(255,255,255,0.15);
  }
  .pack-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px -6px rgba(255,255,255,0.28);
  }
  .pack-tier.popular .pack-cta {
    box-shadow: 0 6px 20px -4px rgba(255,255,255,0.25);
  }

  /* ===== TARIFAIRE TABLE ===== */
  .tarifs-section {
    margin-bottom: 64px;
  }
  .tarifs-table-wrap {
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
  }
  .tarifs-table {
    width: 100%;
    border-collapse: collapse;
  }
  .tarifs-table th {
    background: var(--gray-bg);
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    border-bottom: 1px solid var(--gray-border);
  }
  .tarifs-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-border);
    font-size: 14px;
    vertical-align: middle;
  }
  .tarifs-table tr:last-child td { border-bottom: none; }
  .tarifs-table tbody tr:hover { background: var(--gray-bg); }
  .tarif-pilier {
    color: var(--gray-text);
    font-size: 13px;
  }
  .tarif-name { font-weight: 600; }
  .tarif-devis {
    color: var(--gray-text);
    font-style: italic;
  }
  .tarif-check {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
  }
  .tarif-offert {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: var(--black);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
  }
  .tarifs-table thead th:not(:first-child),
  .tarifs-table tbody td:not(:first-child) {
    text-align: center;
  }

  /* ===== TESTIMONIALS / TRUST ===== */
  .trust-section {
    background: transparent;
    margin: 0 0 64px;
    padding: 80px 120px;
  }
  .trust-inner { max-width: 1760px; margin: 0 auto; }
  .trust-section .section-title {
    margin-bottom: 56px;
    padding: 0;
  }
  .trust-section .section-title h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 0;
  }
  .trust-item {
    text-align: left;
    padding-left: 24px;
    border-left: 1px solid var(--gray-border);
  }
  .trust-number {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .trust-label {
    font-size: 14px;
    color: var(--gray-text);
  }

  /* ===== FOOTER (style Airbnb) ===== */
  footer {
    background: transparent;
    border-top: 1px solid var(--gray-border);
    padding: 48px 80px 24px;
  }
  .footer-inner {
    max-width: 1760px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-border);
  }
  .footer-col h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    padding: 4px 0;
    font-size: 14px;
    color: var(--black);
  }
  .footer-col a {
    color: inherit;
    /* WCAG 2.2 target-size: ≥ 24×24 px hit area on every link */
    display: inline-block;
    padding: 8px 0;
    min-height: 24px;
    transition: opacity 0.25s ease;
  }
  .footer-col a:hover { opacity: 0.6; text-decoration: underline; }
  .footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
  }
  .footer-bottom-left,
  .footer-bottom-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
  }
  /* robust: legal links inherit the footer color instead of a fragile
     inline style="color:inherit" on every anchor */
  .footer-bottom a {
    color: inherit;
    transition: opacity 0.25s ease;
  }
  .footer-bottom a:hover { opacity: 0.6; }
  .footer-bottom-left .dot::before {
    content: '·';
    margin-right: 16px;
  }
  /* visible keyboard focus for every footer link (accessibility) */
  footer a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 3px;
  }

  /* ===== MOBILE ===== */
  @media (max-width: 1024px) {
    header { padding: 16px 24px; }
    .filters-section { padding: 14px 24px; }
    .filters-meta { display: none; }
    main { padding: 24px; }
    .trust-section { margin: 0 0 48px; padding: 56px 32px; }
    .trust-grid { gap: 24px; }
    .trust-item { padding-left: 16px; }
    .trust-section .section-title h2 { font-size: 22px; }
    footer { padding: 40px 24px 24px; }
    .promesse-banner { grid-template-columns: 1fr; padding: 32px; }
    .piliers-grid, .pack-tier-grid, .trust-grid { grid-template-columns: 1fr; }
    /* footer stays a tidy 2-col block on tablets instead of one tall column */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 40px; }
  }
  @media (max-width: 600px) {
    .header-link { display: none; }
    .hero { padding: 22px 24px 56px; }
    .hero-stat:not(:last-child) { padding-right: 24px; }
    .hero-stats { gap: 24px; }
    .promesse-banner h2 { font-size: 24px; }
    /* promesse banner: kill the horizontal overflow on phones
       (grid items need min-width:0, CTA must wrap & go full-width) */
    .promesse-banner { padding: 26px 22px; gap: 22px; }
    .promesse-banner > * { min-width: 0; }
    .promesse-banner p { font-size: 15px; max-width: 100%; }
    .promesse-cta { white-space: normal; width: 100%; text-align: center; }
    .pack-tier-grid { grid-template-columns: 1fr; }
    .pack-includes { padding: 24px 20px; }
    .pack-includes-head h3 { font-size: 22px; }
    .trust-section { padding: 48px 22px; }
    /* one clean column on phones — labels get full width, no cramping */
    .trust-grid { grid-template-columns: 1fr; gap: 22px; }
    .trust-item { padding-left: 16px; }
    .trust-number { font-size: 44px; }
    .trust-label { font-size: 14px; line-height: 1.45; }
    .tarifs-table-wrap { overflow-x: auto; }
    .tarifs-table { min-width: 700px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  }

  /* ===================================================================
     AESTHETIC BLUE PASS — title gradient (echo of hero "0 dispersion")
     + life on the formula cards & the first trust card
     =================================================================== */

  /* Reusable utility = exact same clip-gradient as .hero-accent */
  .text-grad {
    background: linear-gradient(120deg, var(--accent) 0%, #8FB8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  /* Tasteful white→blue gradient echoed across the major headings
     (stays mostly white for readability, blue tail for accent). */
  .section-title h2,
  .pack-tier-intro h3 {
    background: linear-gradient(104deg, var(--black) 32%, var(--accent) 124%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Formula cards (.pack-tier): blue ambient wash + blue-tinted depth.
     Background gradients are clipped by border-radius and never touch
     the absolutely-positioned .popular-badge (no overflow:hidden). */
  .pack-tier {
    background:
      radial-gradient(125% 80% at 50% -12%, rgba(59,130,246,0.11) 0%, transparent 56%),
      rgba(255,255,255,0.02);
  }
  .pack-tier:hover {
    background:
      radial-gradient(130% 90% at 50% -12%, rgba(59,130,246,0.19) 0%, transparent 60%),
      rgba(255,255,255,0.045);
    border-color: rgba(59,130,246,0.38);
    box-shadow: 0 18px 50px -26px rgba(59,130,246,0.45);
  }
  .pack-tier.popular {
    background:
      radial-gradient(130% 92% at 50% -12%, rgba(59,130,246,0.22) 0%, transparent 62%),
      linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(59,130,246,0.45);
    box-shadow: 0 16px 48px -22px rgba(59,130,246,0.42);
  }
  .pack-tier-amount {
    background: linear-gradient(120deg, var(--accent) 0%, #8FB8FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .pack-tier .popular-badge {
    background: linear-gradient(120deg, var(--accent) 0%, #6FA8FF 100%);
    color: #FFFFFF;
  }

  /* Accent on the word "journée" in the promesse banner card
     (the .trust-item / "confiance en chiffres" card stays neutral now). */
  .promesse-banner h2 .text-grad {
    background: linear-gradient(110deg, var(--accent) 0%, #8FB8FF 45%, var(--accent) 90%);
    background-size: 220% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: journee-flow 5s ease-in-out infinite alternate;
  }
  @keyframes journee-flow {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
  }

  /* Animated premium light-sweep — shared by the promesse banner and the
     formula + pilier cards. inset:0 + background-position means no overflow
     is needed, so the .popular-badge is never clipped. Retuned: arrives
     sooner, glides slower, short idle. */
  .promesse-banner::after,
  .pack-tier::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(100deg,
      transparent 30%,
      rgba(59,130,246,0.09) 42%,
      rgba(143,184,255,0.20) 50%,
      rgba(59,130,246,0.09) 58%,
      transparent 70%);
    background-size: 220% 100%;
    background-repeat: no-repeat;
    background-position: 115% 0;
    /* linear = constant gentle speed (no burst); starts at the card edge
       so it appears almost immediately; long glide, short idle */
    animation: card-sweep 6.5s linear infinite;
  }
  @keyframes card-sweep {
    0%   { background-position: 115% 0; }
    80%  { background-position: -25% 0; }
    100% { background-position: -25% 0; }
  }
  .pack-tier, .pilier-card { position: relative; }
  .pack-tier > *, .pilier-card > * { position: relative; z-index: 1; }
  @media (prefers-reduced-motion: reduce) {
    .promesse-banner h2 .text-grad,
    .promesse-banner::after,
    .pack-tier::after { animation: none; }
    .promesse-banner::after,
    .pack-tier::after { display: none; }
  }

  /* ===================================================================
     SCROLL PERFORMANCE PASS
     - off-screen card SVG animations are paused via IntersectionObserver
       (.anim-paused) instead of content-visibility, which clipped the
       "LE PLUS CHOISI" badge and hover glows (paint containment).
     - reset over-eager will-change (fewer permanent compositor layers).
     =================================================================== */
  .anim-paused svg,
  .anim-paused svg *,
  .anim-paused::after { animation-play-state: paused !important; }
  /* keep will-change only on the custom cursor (continuously transformed) */
  .bg-parallax,
  .hero-inner,
  .card,
  .reveal,
  .reveal-stagger,
  .ambient-glow { will-change: auto; }
  .bg-parallax { transform: none; }

  /* ===================================================================
     ACCESSIBILITY & MOBILE PASS
     =================================================================== */

  /* Skip link — visible only on keyboard focus */
  .skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 100001;
    background: var(--accent);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
  }
  .skip-link:focus { top: 16px; }

  /* Whole-card accessible link overlay (cards were cursor:pointer but
     not keyboard-reachable / not navigable) */
  .card { position: relative; }
  .card-link {
    position: absolute;
    inset: 0;
    z-index: 6;
    border-radius: inherit;
    text-indent: -9999px;
    overflow: hidden;
  }

  /* Visible keyboard focus everywhere (custom cursor hides the pointer,
     so a clear focus ring is essential) */
  a:focus-visible,
  button:focus-visible,
  [tabindex]:focus-visible,
  .card-link:focus-visible,
  summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
  }
  .card-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--white), 0 0 0 6px var(--accent);
  }

  /* Readable contrast: client wordmarks are content, not pure decoration */
  .client-logo { opacity: 0.72; }

  /* Long strings (email) never overflow on small screens */
  .hero-contact a { word-break: break-word; }

  @media (max-width: 1024px) {
    /* sticky filter bar offset matches the shorter mobile header */
    .filters-section { top: 94px; }
  }
  @media (max-width: 600px) {
    .filters-section { top: 94px; }
    /* hero CTAs: full-width stacked — no overflow, big tap targets */
    .hero-cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-cta-primary,
    .hero-cta-secondary { width: 100%; justify-content: center; }
    /* client chips wrap cleanly, never clip on small screens */
    .client-logo {
      letter-spacing: 0.02em;
      line-height: 1.25;
      word-break: break-word;
      hyphens: auto;
    }
    /* comfortable tap targets (≥ ~44px) */
    .filter { padding: 12px 16px; }
    .footer-col li { padding: 4px 0; }
    .footer-bottom a { display: inline-block; padding: 8px 0; min-height: 24px; }
    .section-title a { padding: 8px 0; }
    .pilier-card-count { display: inline-block; padding: 8px 0; }
    .hero-cta-primary,
    .hero-cta-secondary,
    .promesse-cta,
    .annex-cta { min-height: 48px; }
    /* slightly larger body text for legibility on phones */
    .card-subtitle,
    .pilier-card p,
    .annex-subtitle { font-size: 15px; line-height: 1.6; }
    body { -webkit-text-size-adjust: 100%; }
  }

  /* Respect reduced-motion: kill animations/transitions + restore cursor */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
    body { cursor: auto !important; }
    .cursor-ring, .cursor-dot { display: none !important; }
  }

  /* ===================================================================
     CLIENTS STRIP — full-width social proof section below the hero
     (uniform SQUARE chips: same shape for every logo incl. Fayolles SVG)
     =================================================================== */
  .trust-clients {
    padding: 44px 80px 56px;
    border-bottom: 1px solid var(--gray-border);
    position: relative;
  }
  .trust-clients-inner { max-width: 1760px; margin: 0 auto; }
  .trust-clients-label {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.8;
    margin: 0 0 28px;
  }
  .trust-clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
  }
  /* Every chip = perfect square (Fayolles SVG fits like the PNG logos) */
  .trust-clients-grid .client-logo {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: auto;
    padding: 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
    line-height: 1.2;
    opacity: 1;
    background: rgba(255,255,255,0.025);
    border-color: rgba(255,255,255,0.08);
  }
  .trust-clients-grid .client-logo:hover {
    border-color: rgba(59,130,246,0.32);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
  }
  .trust-clients-grid img.client-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    padding: 14px;
  }
  @media (max-width: 1024px) {
    .trust-clients { padding: 36px 24px 44px; }
    .trust-clients-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  }
  @media (max-width: 600px) {
    .trust-clients { padding: 28px 16px 36px; }
    .trust-clients-label { margin-bottom: 20px; font-size: 11px; letter-spacing: 0.18em; }
    .trust-clients-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .trust-clients-grid .client-logo { padding: 10px; font-size: 9.5px; }
    .trust-clients-grid img.client-logo { padding: 10px; }
  }


/* =====================================================================
   ANNEX PAGE MODE — real standalone pages (build A′, generated)
   ===================================================================== */
.annex-page { position: relative; display: block; min-height: 100vh; overflow: hidden; }
.annex-page .annex-modal-inner {
  transform: none; opacity: 1;
  margin: auto; width: 100%; max-width: 920px;
  padding: 124px 32px 110px;
}
.annex-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.04em; color: var(--gray-text);
  margin-bottom: 22px;
  transition: color 0.3s cubic-bezier(0.16,1,0.3,1),
              transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.annex-back:hover { color: var(--black); transform: translateX(-3px); }
a.annex-grid-item { display: block; color: inherit; text-decoration: none; }
a.pack-cta { display: block; box-sizing: border-box; text-align: center; }
/* premium cascade replicated on load (mirrors the overlay entrance) */
.annex-page .annex-back,
.annex-page .annex-breadcrumb,
.annex-page .annex-title,
.annex-page .annex-subtitle,
.annex-page .annex-body {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.annex-page.is-ready .annex-back      { opacity: 1;   transform: none; transition-delay: 0.10s; }
.annex-page.is-ready .annex-breadcrumb{ opacity: 0.7; transform: none; transition-delay: 0.18s; }
.annex-page.is-ready .annex-title     { opacity: 1;   transform: none; transition-delay: 0.26s; }
.annex-page.is-ready .annex-subtitle  { opacity: 1;   transform: none; transition-delay: 0.34s; }
.annex-page.is-ready .annex-body      { opacity: 1;   transform: none; transition-delay: 0.42s; }
@media (max-width: 768px) {
  .annex-page .annex-modal-inner { padding: 96px 16px 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .annex-page .annex-back, .annex-page .annex-breadcrumb, .annex-page .annex-title,
  .annex-page .annex-subtitle, .annex-page .annex-body {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}
