  /* ════════════════════════════════
    FONTS (Hébergement Local)
  ════════════════════════════════ */
  @font-face {
    font-family: 'Orbitron';
    src: url('../assets/font/static/Orbitron-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Nohemi';
    src: url('../assets/font/Nehemi/Nohemi-Bold-BF6438cc587b5b5.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Instrument Sans';
    src: url('../assets/font/instrument-sans.woff2') format('woff2');
    font-weight: 300 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Instrument Sans';
    src: url('../assets/font/instrument-sans-italic.woff2') format('woff2');
    font-weight: 300 600;
    font-style: italic;
    font-display: swap;
  }

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

  :root {
    --white:       #FFFFFF;
    --black:       #0A0A0A;
    --accent:      #0047FF;
    --accent-light: rgba(0, 71, 255, 0.08);
    --accent-mid:  rgba(0, 71, 255, 0.16);
    --gray-50:     #F8FAFC;
    --gray-100:    #F1F5F9;
    --gray-200:    #E2E8F0;
    --gray-400:    #94A3B8;
    --gray-600:    #475569;
    --border:      rgba(0, 0, 0, 0.09);
    --display:     'Nohemi', sans-serif;
    --body:        'Instrument Sans', sans-serif;
    --brand:       'Orbitron', sans-serif;
    --r:           1rem;
    --r-lg:        1.5rem;
    --pad-x:       clamp(1.5rem, 4vw, 3rem);
    --pad-section: clamp(4.5rem, 9vw, 7.5rem);
  }

  ::selection {
    background: var(--black);
    color: var(--white);
  }
  ::-moz-selection {
    background: var(--black);
    color: var(--white);
  }

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

  body {
    overflow-x: hidden;
    background: var(--white);
    color: var(--black);
    font-family: var(--body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }

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

  /* ════════════════════════════════
    UTILITIES
  ════════════════════════════════ */
  .s-eye {
    font-size: 0.6875rem; font-weight: 600; letter-spacing: .2em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 0.875rem;
  }
  .s-ttl {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 4rem); line-height: .95; letter-spacing: -0.01em;
  }
  .accent-text { color: var(--accent); }
  .brand { font-family: var(--brand); font-weight: 900; letter-spacing: 0.02em; }

  /* ════════════════════════════════
    BUTTONS
  ════════════════════════════════ */
  .btn-primary {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .9rem; font-weight: 500;
    background: var(--accent); color: var(--white);
    padding: .625rem 2.25rem; border-radius: 100px;
    text-decoration: none; transition: background .2s, transform .2s;
    white-space: nowrap;
  }
  .btn-primary:hover { background: #0038cc; transform: translateY(-1px); }
  .btn-primary.btn-full { width: 100%; justify-content: center; border-radius: var(--r); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .9rem; font-weight: 500;
    background: transparent; color: var(--black);
    padding: .875rem 1.75rem; border-radius: 100px;
    border: 1px solid var(--border); text-decoration: none;
    transition: border-color .2s, background .2s;
    white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--gray-400); background: var(--gray-50); }

  .btn-black {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .9rem; font-weight: 500;
    background: var(--black); color: var(--white);
    padding: .875rem 1.75rem; border-radius: 100px;
    text-decoration: none; transition: opacity .2s, transform .2s;
    white-space: nowrap;
    border: none;
  }
  .btn-black:hover { opacity: 0.85; transform: translateY(-1px); }

  .btn-outline {
    display: flex; align-items: center; justify-content: center;
    font-size: .875rem; font-weight: 500;
    background: transparent; color: var(--black);
    border: 1px solid var(--border); border-radius: var(--r);
    padding: .875rem 1.25rem; text-decoration: none;
    transition: border-color .2s, background .2s;
    margin-top: auto;
  }
  .btn-outline:hover { border-color: var(--gray-400); background: var(--gray-50); }

  /* ════════════════════════════════
    HAMBURGER BUTTON
  ════════════════════════════════ */
  .n-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s, border-color .2s;
    z-index: 1001;
  }
  .n-hamburger:hover { background: var(--gray-50); border-color: var(--gray-200); }
  .n-hamburger span {
    display: block;
    width: 18px; height: 1.5px;
    background: var(--black);
    border-radius: 2px;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s, width .3s;
    transform-origin: center;
  }
  /* Open state */
  .n-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .n-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
  .n-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ════════════════════════════════
    MOBILE MENU OVERLAY
  ════════════════════════════════ */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 1rem;
    right: 1rem;
    z-index: 998;
    pointer-events: none;
    visibility: hidden;
  }
  .mobile-menu.is-open {
    pointer-events: all;
    visibility: visible;
  }
  /* The actual panel — acrylic frosted glass, same vibe as nav.scrolled */
  .mm-bg {
    position: relative;
    margin-top: 4.5rem; /* clears the nav bar */
    border-radius: 1.5rem;
    background: rgba(226, 232, 240, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
    padding: 1.25rem 1.5rem 1.5rem;
    transform: translateY(-1rem) scale(0.97);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .35s cubic-bezier(.16,1,.3,1);
    transform-origin: top center;
  }
  .mobile-menu.is-open .mm-bg {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .mm-nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .mm-link {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -.025em;
    line-height: 1.2;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transform: translateY(.5rem);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .mm-link:last-child { border-bottom: none; }
  .mm-link-arrow {
    font-size: .875rem;
    color: var(--gray-400);
    transition: transform .25s, color .2s;
  }
  .mm-link:hover { color: var(--accent); }
  .mm-link:hover .mm-link-arrow { color: var(--accent); transform: translateX(3px); }
  .mobile-menu.is-open .mm-link {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu.is-open .mm-link:nth-child(1) { transition-delay: .07s; }
  .mobile-menu.is-open .mm-link:nth-child(2) { transition-delay: .11s; }
  .mobile-menu.is-open .mm-link:nth-child(3) { transition-delay: .15s; }
  .mobile-menu.is-open .mm-link:nth-child(4) { transition-delay: .19s; }
  .mobile-menu.is-open .mm-link:nth-child(5) { transition-delay: .23s; }
  .mm-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .875rem;
    font-weight: 500;
    background: var(--black);
    color: var(--white);
    padding: .875rem 1.75rem;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 1.125rem;
    transform: translateY(.5rem);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16,1,.3,1) .27s, opacity .4s .27s, background .2s;
  }
  .mobile-menu.is-open .mm-cta {
    transform: translateY(0);
    opacity: 1;
  }
  .mm-cta:hover { background: var(--accent); }
  .mm-footer { display: none; }

  /* ════════════════════════════════
    HERO MOBILE DECORATIVE BG
  ════════════════════════════════ */
  .hero-mobile-deco {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-deco-svg {
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-deco-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
  .hero-deco-blob-1 {
    width: 280px; height: 280px;
    background: rgba(0,71,255,0.08);
    top: -60px; right: -60px;
    animation: blobFloat1 8s ease-in-out infinite;
  }
  .hero-deco-blob-2 {
    width: 180px; height: 180px;
    background: rgba(0,71,255,0.05);
    bottom: 10%; left: -40px;
    animation: blobFloat2 11s ease-in-out infinite;
  }
  @keyframes blobFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.08); }
  }
  @keyframes blobFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(15px,-25px) scale(1.05); }
  }


  #sc-track {
    position: fixed; top: 0; left: 0; right: 0;
    height: 2px; background: transparent; z-index: 9000;
  }
  #sc-thumb {
    height: 100%; background: var(--accent);
    transform: scaleX(0); transform-origin: left center;
  }

  /* ════════════════════════════════
    NAV
  ════════════════════════════════ */
  nav {
    position: fixed; top: 1.5rem; left: 1.5rem; right: 1.5rem; z-index: 1000;
    padding: 1rem 2rem;
    display: flex; align-items: center; justify-content: space-between;
    transition: all .4s cubic-bezier(.16,1,.3,1);
    border-radius: 100px;
  }
  nav.scrolled {
    left: 5rem; right: 5rem;
    background: rgba(226, 232, 240, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    padding-top: .75rem; padding-bottom: .75rem;
  }

  /* Mobile nav scrolled — never squash too much */
  @media (max-width: 900px) {
    nav { top: .75rem; left: .75rem; right: .75rem; padding: .75rem 1.25rem; }
    nav.scrolled { left: .75rem; right: .75rem; padding: .625rem 1.25rem; }
  }

  .n-logo {
    display: flex; align-items: center; gap: .625rem;
    font-family: var(--display); font-weight: 700;
    font-size: clamp(.875rem, 1.5vw, 1rem); letter-spacing: -.02em;
    color: var(--black); text-decoration: none;
  }
  .n-logo-img {
    width: clamp(1.25rem, 2vw, 1.5rem); height: auto;
  }

  .n-links {
    display: flex; gap: clamp(1.25rem, 3vw, 2rem); list-style: none;
  }
  .n-links a {
    font-size: .8125rem; font-weight: 500; letter-spacing: .02em;
    color: var(--gray-600); text-decoration: none; transition: color .2s;
  }
  .n-links a:hover { color: var(--black); }

  .n-btn {
    font-size: .8125rem; font-weight: 500;
    background: var(--black); color: var(--white);
    padding: .45rem 1.75rem; border-radius: 100px;
    text-decoration: none; transition: background .2s;
    white-space: nowrap;
  }
  .n-btn:hover { background: var(--accent); }

  /* ════════════════════════════════
    HERO
  ════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--pad-section) + 4rem) var(--pad-x) var(--pad-section);
    position: relative; overflow: hidden;
  }

  /* Decorative circle */
  #hero::before {
    content: ''; position: absolute;
    top: -20%; right: -10%;
    width: min(50vw, 640px); height: min(50vw, 640px);
    background: radial-gradient(circle, rgba(0, 71, 255, .07) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
  }

  /* Canvas fumée fusée — plan le plus bas */
  #heroSmokeCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  /* Decorative circle au-dessus du canvas */
  #hero::before { z-index: 0; }

  /* Ligne texte + fusée */
  .hero-layout {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 5rem);
    position: relative;
    z-index: 1;
  }

  .hero-inner {
    flex: 1;
    min-width: 0;
    position: relative; z-index: 2;
  }

  /* Bloc fusée */
  .hero-visual {
    flex-shrink: 0;
    width: clamp(200px, 32vw, 440px);
    height: clamp(200px, 32vw, 440px);
    position: relative;
    z-index: 1;
  }

  .rocket-container {
    position: absolute;
    top: 22%;
    left: 62%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    animation: float 4s ease-in-out infinite;
  }

  .rocket-container svg {
    width: 100%;
    height: 100%;
  }

  .flame {
    transform-origin: 100px 165px;
    animation: rocket-flame 0.15s infinite alternate;
  }

  .flame-inner {
    transform-origin: 100px 165px;
    animation: rocket-flame-inner 0.1s infinite alternate;
  }

  @keyframes float {
    0%, 100% { transform: translate(-50%, -50%); }
    50%       { transform: translate(-50%, -52%); }
  }

  @keyframes rocket-flame {
    0%   { transform: scaleY(1) scaleX(1); }
    100% { transform: scaleY(1.4) scaleX(1.1); }
  }

  @keyframes rocket-flame-inner {
    0%   { transform: scaleY(1); }
    100% { transform: scaleY(1.5); }
  }

  .hero-label {
    font-size: .75rem; font-weight: 500; letter-spacing: .18em;
    text-transform: uppercase; color: var(--gray-600);
    display: flex; align-items: center; gap: .75rem;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
  }
  .hero-label::before {
    content: ''; width: 1.25rem; height: 1px; background: var(--accent);
  }

  .hero-title {
    font-family: var(--display);
    font-size: clamp(2.75rem, 7.5vw, 6rem); line-height: .9;
    letter-spacing: -0.01em;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    color: var(--black);
  }
  @media (max-width: 768px) {
    .hero-title { font-size: clamp(2rem, 11vw, 2.75rem); letter-spacing: 0; line-height: .95; }
  }
  .hero-accent { color: var(--accent); }

  .hero-desc {
    font-size: clamp(.9375rem, 1.5vw, 1.125rem); font-weight: 300;
    line-height: 1.7; color: var(--gray-600);
    max-width: 36rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  }

  .hero-cta {
    display: flex; gap: .875rem; flex-wrap: wrap;
  }

  .hero-proof {
    display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    margin-top: clamp(3rem, 7vw, 5rem);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    position: relative; z-index: 1;
  }
  .proof-item {
    display: flex; flex-direction: column; gap: .25rem;
  }
  .proof-item strong {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: -.02em;
    color: var(--black);
  }
  .proof-item span {
    font-size: .75rem; color: var(--gray-600); letter-spacing: .02em;
  }
  .proof-sep {
    width: 1px; height: 2rem; background: var(--border);
  }

  /* ════════════════════════════════
    PORTFOLIO / PROJETS RÉCENTS
  ════════════════════════════════ */
  #projets {
    padding: var(--pad-section) 0 clamp(2rem, 5vw, 3.75rem);
  }
  .s-hdr {
    padding: 0 var(--pad-x);
    margin-bottom: clamp(2rem, 4.5vw, 3.5rem);
  }

  .p-wrap { overflow-x: clip; overflow-y: visible; padding-top: 12px; margin-top: -12px; }
  .p-track {
    display: flex; gap: 1.25rem; padding: 0 var(--pad-x);
    transition: transform .65s cubic-bezier(.16, 1, .3, 1);
  }

  .pc {
    flex-shrink: 0; width: clamp(17.5rem, 35vw, 25rem);
    height: clamp(26rem, 48vh, 34rem);
    /* FIX v4: inset(0) pour arrondir les 4 coins — p-wrap overflow-y:visible gère le hover */
    clip-path: inset(0 round var(--r-lg));
    -webkit-clip-path: inset(0 round var(--r-lg));
    position: relative;
    box-shadow: inset 0 0 0 1px var(--border);
    transition: box-shadow .4s ease-in-out, transform .4s ease-in-out, filter .4s cubic-bezier(.16,1,.3,1), opacity .4s cubic-bezier(.16,1,.3,1);
    display: block;
  }
  .pc:hover {
    box-shadow: 0 14px 44px rgba(0, 102, 255, 0.3), inset 0 0 0 1px rgba(0, 71, 255, 0.18);
    transform: translateY(-6px);
  }
  .p-track:hover .pc {
    filter: blur(1px);
    opacity: 0.60;
  }
  .p-track:hover .pc:hover {
    filter: blur(0);
    opacity: 1;
  }
  .pc-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 0%;
    transition: transform .4s ease-in-out, object-position 3s ease-in-out;
  }
  .pc:hover .pc-bg {
    transform: scale(1.05);
    object-position: 50% 100%;
  }
  .pc-grad {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to top, rgba(5,5,5,.88) 0%, rgba(5,5,5,.1) 55%, transparent 100%);
  }
  .pc-info {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    padding: clamp(1.25rem, 2.5vw, 1.875rem);
  }
  .pc-cat {
    font-size: .625rem; letter-spacing: .18em; text-transform: uppercase;
    margin-bottom: .4375rem;
  }
  .pc-ttl {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.4375rem); letter-spacing: -.02em;
    color: #fff; margin-bottom: .625rem;
  }
  .pc-meta {
    font-size: .75rem; color: rgba(255,255,255,.45); display: flex; gap: .875rem;
  }

  .pa {
    display: flex; align-items: center; gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem) var(--pad-x) 0;
  }
  .pa-btn {
    width: 3.25rem; height: 3.25rem;
    border: 1.5px solid var(--black); border-radius: 50%;
    background: var(--black); color: var(--white); font-size: 1.125rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s, transform .2s;
    flex-shrink: 0;
  }
  .pa-btn:hover { background: var(--accent); border-color: var(--accent); transform: scale(1.08); }
  .pa-hint {
    font-size: .75rem; color: var(--gray-400); letter-spacing: .06em;
    text-transform: uppercase; display: flex; align-items: center; gap: .5rem;
  }
  .pa-hint::before { content: ''; width: 1rem; height: 1px; background: var(--gray-400); }
  @media (max-width: 768px) {
    .pa { justify-content: center; }
    .pa-hint { display: none; }
  }

  /* ════════════════════════════════
    DONNER ENVIE / INSPIRE
  ════════════════════════════════ */
  #inspire {
    padding: var(--pad-section) var(--pad-x);
    background: var(--gray-50);
  }
  .in-hdr {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .in-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  .in-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    transition: border-color .25s, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  }
  .in-card:hover {
    border-color: rgba(0, 71, 255, .3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,71,255,.07);
  }
  .in-ico {
    width: 3.5rem; height: 3.5rem;
    background: var(--accent-light); color: var(--accent);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
  }
  .in-ico svg { width: 1.75rem; height: 1.75rem; }
  .in-card h3 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1.05rem, 1.8vw, 1.3rem); letter-spacing: -.02em; line-height: 1.25;
    margin-bottom: .75rem; color: var(--black);
  }
  .in-card p { font-size: .9rem; line-height: 1.75; color: var(--gray-600); }

  /* Desktop: body always shown, toggle hidden */
  @media (min-width: 769px) {
    .in-card-body { display: block; margin-top: .875rem; }
    .in-toggle { display: none !important; }
    .in-card-hdr .in-ico { margin-bottom: 0; }
    .in-card-hdr { margin-bottom: .75rem; }
    /* On desktop the icon should be above the title like original */
    .in-card-hdr { flex-direction: column; align-items: flex-start; gap: .875rem; }
    .in-card-title-wrap h3 { margin-bottom: 0; }
  }

  /* ════════════════════════════════
    DONNER ENVIE / INSPIRE - mobile accordion
  ════════════════════════════════ */
  .in-card-hdr {
    display: flex; align-items: flex-start; gap: 1rem;
  }
  .in-card-hdr .in-ico { margin-bottom: 0; }
  .in-card-title-wrap { flex: 1; min-width: 0; }
  .in-toggle {
    display: none; /* hidden on desktop */
    flex-shrink: 0;
    width: 2rem; height: 2rem;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: transparent;
    color: var(--gray-600);
    font-size: 1.25rem; font-weight: 300; line-height: 1;
    align-items: center; justify-content: center;
    cursor: pointer;
    transition: transform .3s cubic-bezier(.16,1,.3,1), border-color .2s, color .2s;
    padding: 0;
  }
  .in-card.open .in-toggle { transform: rotate(45deg); color: var(--accent); border-color: var(--accent); }
  .in-card-body { overflow: hidden; }

  @media (max-width: 768px) {
    .in-grid {
      grid-template-columns: 1fr; gap: .75rem;
      width: 100%; max-width: 100%;
    }
    .in-card {
      padding: .95rem 1rem;
      min-height: auto;
    }
    .in-card:hover { transform: none; box-shadow: none; }

    .in-toggle { display: flex; }
    .in-card-hdr .in-ico { margin-bottom: 0; width: 2.5rem; height: 2.5rem; border-radius: .75rem; }
    .in-card-hdr .in-ico svg { width: 1.25rem; height: 1.25rem; }
    .in-card h3 { font-size: .9rem; margin-bottom: 0; line-height: 1.2; }
    .in-card p { font-size: .85rem; line-height: 1.4; }

    /* Body collapsed by default on mobile */
    .in-card-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.16,1,.3,1), margin-top .35s;
      margin-top: 0;
    }
    .in-card-body > p { margin: 0; }

    .in-card.open .in-card-body {
      max-height: 200px;
      margin-top: .75rem;
    }
    .in-card.open .in-card-body > p { padding-bottom: .25rem; }
  }

  /* ════════════════════════════════
    STATS
  ════════════════════════════════ */
  #stats {
    padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .stats-inner {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: clamp(2rem, 5vw, 4rem);
    text-align: center;
  }
  .stat-item { display: flex; flex-direction: column; gap: .375rem; }
  .stat-n {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.045em; line-height: 1;
    color: var(--black);
  }
  .stat-l {
    font-size: .8125rem; color: var(--gray-600); letter-spacing: .03em;
  }
  .stat-sep {
    width: 1px; height: 3rem; background: var(--border); flex-shrink: 0;
  }

  /* ════════════════════════════════
    ÉQUIPE
  ════════════════════════════════ */
  #equipe {
    padding: var(--pad-section) var(--pad-x);
  }
  .eq-hdr {
    margin-bottom: 1.25rem;
  }
  .eq-desc {
    max-width: 42rem; margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .eq-desc p {
    font-size: clamp(.9375rem, 1.5vw, 1.0625rem); line-height: 1.8;
    color: var(--gray-600);
  }
  .eq-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .eq-card {
    background: var(--gray-50);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s, border-color .4s;
  }
  .eq-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent-mid);
  }
  .eq-img-wrap {
    width: 100%; aspect-ratio: 1/1.2;
    background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .eq-img-placeholder {
    font-family: var(--display); font-size: 5rem; font-weight: 800;
    color: var(--white); opacity: 0.35;
    background: linear-gradient(135deg, var(--accent), var(--black));
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
  }
  .eq-info {
    padding: 2rem;
  }
  .eq-name {
    font-family: var(--display); font-weight: 700;
    font-size: 1.25rem; letter-spacing: -.02em;
    margin-bottom: .25rem; color: var(--black);
  }
  .eq-role {
    font-size: .8125rem; color: var(--accent); margin-bottom: 1.25rem;
    font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  }
  .eq-bio {
    font-size: .9375rem; color: var(--gray-600); line-height: 1.7;
  }

  /* ════════════════════════════════
    FAQ
  ════════════════════════════════ */
  #faq {
    padding: var(--pad-section) var(--pad-x);
    background: var(--gray-50);
  }
  .faq-hdr {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .faq-list {
    max-width: 720px;
  }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: clamp(.9375rem, 1.5vw, 1.0625rem); font-weight: 500;
    color: var(--black); text-align: left;
    transition: color .2s;
  }
  .faq-q:hover { color: var(--accent); }
  .faq-icon {
    font-size: 1.375rem; font-weight: 300; flex-shrink: 0;
    color: var(--gray-400); line-height: 1;
    transition: transform .3s cubic-bezier(.16,1,.3,1), color .2s;
  }
  .faq-item.open .faq-icon {
    transform: rotate(45deg); color: var(--accent);
  }
  .faq-a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1);
  }
  .faq-item.open .faq-a {
    grid-template-rows: 1fr;
  }
  .faq-a > p {
    overflow: hidden;
    min-height: 0;
    font-size: .9375rem; line-height: 1.8; color: var(--gray-600);
    padding-bottom: 1.25rem;
  }

  /* ════════════════════════════════
    GUIDE POUR CHOISIR
  ════════════════════════════════ */


  #guide {
    padding: var(--pad-section) var(--pad-x);
  }
  .gu-hdr {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
  }
  .gu-hdr-top {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
    flex-wrap: wrap;
  }
  .gu-sub {
    font-size: .9375rem; color: var(--gray-600); line-height: 1.7;
    max-width: 36rem; margin-top: 1rem;
  }
  .gu-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; align-items: stretch;
  }
  @media (max-width: 900px) {
    .gu-grid { grid-template-columns: 1fr; max-width: 480px; }
    .gu-hdr-top { flex-direction: column; align-items: flex-start; }
    .gu-hdr-btn { align-self: flex-start; margin-top: .5rem; }
  }
  .gu-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex; flex-direction: column;
    transition: border-color .25s, box-shadow .3s;
  }
  .gu-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
  }
  .gu-card-featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(0,71,255,.15), 0 16px 40px rgba(0,71,255,.1);
    position: relative;
  }
  .gu-card-featured:hover {
    border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 20px 48px rgba(0,71,255,.15);
  }
  .gu-badge {
    display: inline-flex; align-self: flex-start;
    font-size: .625rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    background: var(--accent); color: var(--white);
    padding: .3rem .875rem; border-radius: 100px;
    margin-bottom: 1rem;
  }
  .gu-name {
    font-family: var(--display); font-weight: 700;
    font-size: 1.3125rem; letter-spacing: -.03em;
    margin-bottom: .375rem;
  }
  .gu-price {
    font-size: .9375rem; color: var(--gray-600);
    margin-bottom: 1.375rem;
  }
  .gu-price strong { color: var(--black); font-weight: 600; }
  .gu-for {
    font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--gray-400); margin-bottom: .75rem;
  }
  .gu-list {
    list-style: none; display: flex; flex-direction: column;
    gap: .5rem; flex: 1; margin-bottom: 1.75rem;
  }
  .gu-list li {
    font-size: .875rem; color: var(--gray-600); line-height: 1.6;
    padding-left: 1.25rem; position: relative;
  }
  .gu-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-size: .75rem; font-weight: 600;
  }
  .gu-list li.excluded {
    color: var(--gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--gray-400);
  }
  .gu-list li.excluded::before {
    content: '✕'; color: var(--gray-400);
  }

  .tr-card-list li.excluded {
      color: rgba(255,255,255,.25);
      text-decoration: line-through;
      text-decoration-color: rgba(255,255,255,.1);
  }
  .tr-card-list li.excluded::before {
      content: '✕'; color: rgba(255,255,255,.2);
  }

  /* ════════════════════════════════
    DEVIS / CONTACT
  ════════════════════════════════ */
  #devis {
    padding: var(--pad-section) var(--pad-x);
    background: var(--gray-50);
    border-top: 1px solid var(--border);
  }
  .dv-wrap {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: clamp(3rem, 7vw, 6rem); align-items: start;
  }
  .dv-ttl {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -.045em; line-height: 1.05;
    margin-bottom: 1.25rem;
  }
  .dv-sub {
    font-size: clamp(.875rem, 1.5vw, 1rem); line-height: 1.8;
    color: var(--gray-600); margin-bottom: 2rem;
  }
  .dv-infos {
    display: flex; flex-direction: column; gap: 1rem;
    margin-bottom: 2rem;
  }
  .dv-info {
    display: flex; align-items: center; gap: 1rem;
    font-size: .875rem; color: var(--black); text-decoration: none;
    transition: color .2s;
  }
  .dv-info:hover { color: var(--accent); }
  .dv-ico {
    font-size: 1.125rem; width: 2.25rem; height: 2.25rem;
    border-radius: 50%; background: var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .dv-info-label { font-size: .6875rem; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; }
  .dv-info-val { font-weight: 500; font-size: .9rem; }
  .dv-socials { display: flex; gap: .75rem; }
  .dv-social {
    font-size: .8125rem; font-weight: 500;
    border: 1px solid var(--border); padding: .5rem 1.125rem;
    border-radius: 100px; text-decoration: none; color: var(--black);
    transition: border-color .2s, background .2s;
  }
  .dv-social:hover { background: var(--black); color: var(--white); border-color: var(--black); }

  /* Form */
  .dv-form {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    display: flex; flex-direction: column; gap: 1.125rem;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  }
  .form-field { display: flex; flex-direction: column; gap: .4375rem; }
  .form-field label {
    font-size: .8125rem; font-weight: 500; color: var(--black); letter-spacing: .01em;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-family: var(--body); font-size: .9375rem;
    background: var(--gray-50); color: var(--black);
    border: 1px solid var(--border); border-radius: .75rem;
    padding: .75rem 1rem; outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none; -webkit-appearance: none;
    width: 100%;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,71,255,.1);
  }
  .form-field textarea { resize: vertical; min-height: 7rem; }
  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%2394A3B8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
    padding-right: 2.5rem; cursor: pointer;
  }
  .form-success {
    display: none; text-align: center;
    font-size: .9rem; font-weight: 500; color: #16a34a;
    padding: .875rem; background: #f0fdf4; border: 1px solid #bbf7d0;
    border-radius: .75rem;
  }
  .form-success.show { display: block; }

  /* ════════════════════════════════
    CTA GIANT
  ════════════════════════════════ */
  #cta-giant {
    padding: clamp(4rem, 8vw, 6rem) var(--pad-x);
    background: var(--white);
    display: flex;
    justify-content: center;
  }

  .giant-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px;
    padding: clamp(2.5rem, 6vw, 3.5rem) 4rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: var(--r-lg);
    border: none;
    cursor: pointer;
    transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  }

  .giant-btn:hover {
    transform: scale(0.98);
  }

  .gb-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    pointer-events: none;
  }

  .gb-icon svg {
    width: clamp(3rem, 7vw, 5rem);
    height: auto;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  }

  .gb-text {
    font-family: var(--brand);
    font-weight: 800;
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    line-height: 1;
    letter-spacing: -.04em;
  }

  /* Continuous Unique Curved Wave Strokes Animation */
  .gb-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Motif de 600px avec 3 vagues courbant uniquement vers la droite, épaisseur 24px */
    background-image: url('data:image/svg+xml;utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 100" preserveAspectRatio="none"%3E%3Cpath d="M50 0 Q 100 50, 50 100" stroke="black" stroke-width="24" fill="none" stroke-linecap="round"/%3E%3Cpath d="M250 0 Q 320 50, 250 100" stroke="black" stroke-width="24" fill="none" stroke-linecap="round"/%3E%3Cpath d="M450 0 Q 510 50, 450 100" stroke="black" stroke-width="24" fill="none" stroke-linecap="round"/%3E%3C/svg%3E');
    background-size: 600px 100%; 
    background-repeat: repeat-x;
    z-index: 1;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
  }

  .giant-btn:hover .gb-wave {
    opacity: 1;
    animation: waveMove 3s linear infinite;
  }

  @keyframes waveMove {
    0% { background-position: 0 0; }
    100% { background-position: 600px 0; }
  }

  .giant-btn:hover .gb-icon svg {
    transform: translateX(15px) scale(1.1);
  }

  @media (pointer: coarse) {
    .gb-wave {
      opacity: 1;
      animation: waveMove 3s linear infinite;
    }
  }

  /* ════════════════════════════════
    FOOTER
  ════════════════════════════════ */
  footer {
    padding: clamp(2rem, 4vw, 3rem) var(--pad-x);
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
  }
  .f-logo {
    font-family: var(--display); font-weight: 700;
    font-size: .9375rem; letter-spacing: -.02em; color: var(--black);
  }
  .f-links {
    list-style: none; display: flex; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap;
  }
  .f-links a {
    font-size: .8125rem; color: var(--gray-600); text-decoration: none;
    transition: color .2s;
  }
  .f-links a:hover { color: var(--black); }
  .f-copy {
    font-size: .75rem; color: var(--gray-400);
  }

  /* ════════════════════════════════
    REVEAL ON SCROLL
  ════════════════════════════════ */
  .rv {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
  }
  .rv.vis { opacity: 1; transform: none; }
  .rv.d1 { transition-delay: .1s; }
  .rv.d2 { transition-delay: .2s; }
  .rv.d3 { transition-delay: .3s; }
  .rv.d4 { transition-delay: .4s; }

  /* ════════════════════════════════
    RESPONSIVE — TABLET
  ════════════════════════════════ */
  @media (max-width: 1024px) {
    .gu-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .dv-wrap { grid-template-columns: 1fr; }

    /* Tablet : visuel plus compact */
    .hero-visual {
      width: clamp(160px, 26vw, 320px);
      height: clamp(160px, 26vw, 320px);
    }

    /* Show hamburger on tablet */
    .n-hamburger { display: flex; }
    .n-links { display: none; }
    .n-btn { display: none; }
  }

  @media (max-width: 768px) {
    /* Nav */
    .n-hamburger { display: flex; }
    .n-links { display: none; }
    .n-btn { display: none; }

    /* Hero mobile deco */
    .hero-mobile-deco { display: block; }

    /* Hero — empilement vertical, fusée masquée sur mobile */
    #heroSmokeCanvas { display: none; }
    .hero-layout { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .hero-visual { display: none; }
    .hero-proof { gap: 1rem; margin-top: 2rem; padding-top: 1.5rem; flex-wrap: wrap; }
    .proof-sep { display: none; }
    .proof-item { min-width: calc(50% - .5rem); }

    /* Portfolio cards */
    .pc { width: 80vw; }

    /* Stats */
    .stats-inner { gap: 1.25rem; text-align: left; justify-content: flex-start; flex-wrap: wrap; }
    .stat-sep { display: none; }
    .stat-item { min-width: calc(50% - 1rem); }

    /* Guide grid mobile */
    .gu-grid { grid-template-columns: 1fr; max-width: 480px; }
    .gu-hdr-top { flex-direction: column; align-items: flex-start; }
    .gu-hdr-btn { align-self: flex-start; margin-top: .5rem; }

    /* Inspire grid mobile */
    .in-grid { grid-template-columns: 1fr; }

    /* Form */
    .form-row { grid-template-columns: 1fr; }

    /* Giant CTA text smaller */
    .gb-text { font-size: clamp(2.5rem, 10vw, 4.5rem); }

    /* Equipe banner — hide image on mobile, compact */
    .eq-b-img { display: none; }
    .eq-banner { border-radius: var(--r); }
    .eq-b-content { padding: 1.5rem; }

    /* Footer */
    footer { flex-direction: column; align-items: flex-start; gap: .75rem; }
  }

  @media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .proof-item { min-width: 100%; }
  }

  @media (max-width: 480px) {
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .cs-inner { flex-direction: column; align-items: flex-start; }
  }

/* ════════════════════════════════
   PAGE-SPECIFIC STYLES
════════════════════════════════ */

/* ─── INDEX / EQUIPE BANNER ─── */
.eq-banner {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.03);
}
.eq-b-img {
  flex: 1;
  background: #F0F4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
}
.eq-b-img svg {
  width: 55%;
  max-width: 240px;
}
.eq-b-img img.real-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eq-b-content {
  flex: 1.2;
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.eq-b-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--black);
  margin-bottom: 1rem;
  letter-spacing: 0;
}
.eq-b-text {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ─── TARIFS ─── */
.tr-hero {
    padding: calc(var(--pad-section) + 5rem) var(--pad-x) var(--pad-section);
    position: relative;
    overflow: hidden;
}
.tr-hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 50%, rgba(0,71,255,.06) 0%, transparent 70%),
        var(--white);
}
.tr-hero-content {
    position: relative; z-index: 1;
    max-width: 42rem;
}
.tr-hero-title {
    font-family: var(--display);
    font-size: clamp(2.75rem, 7vw, 5rem); line-height: .9; letter-spacing: -0.01em;
    margin-bottom: clamp(1.25rem, 3vw, 2rem);
    color: var(--black);
    opacity: 0; transform: translateY(2rem);
    animation: fiu .9s cubic-bezier(.16,1,.3,1) .3s forwards;
}
.tr-hero-title .accent { color: var(--accent); }
.tr-hero-sub {
    font-size: clamp(.9375rem, 1.5vw, 1.125rem); font-weight: 300;
    line-height: 1.8; color: var(--gray-600); max-width: 36rem;
    opacity: 0; transform: translateY(1rem);
    animation: fiu .7s cubic-bezier(.16,1,.3,1) .6s forwards;
}
.tr-compare {
    padding: var(--pad-section) var(--pad-x);
    background: var(--black);
    color: var(--white);
}
.tr-compare-hdr {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.tr-compare-title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 4rem); line-height: .92; letter-spacing: -0.01em;
}
.tr-compare-alert {
    background: rgba(0,71,255,.08);
    border: 1px solid rgba(0,71,255,.2);
    border-radius: 1.5rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    display: flex; gap: 1rem; align-items: flex-start;
}
.tr-compare-alert-ico {
    font-size: 1.5rem; flex-shrink: 0; line-height: 1;
}
.tr-compare-alert p {
    font-size: .9375rem; line-height: 1.75; color: rgba(255,255,255,.7);
}
.tr-compare-alert strong {
    color: var(--accent); font-weight: 600;
}
.tr-compare-alert b {
    color: var(--white); font-weight: 600;
}
.tr-table {
    display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0;
    align-items: stretch;
}
.tr-col {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}
.tr-col-bn {
    border-color: rgba(0,71,255,.3);
    background: rgba(0,71,255,.04);
}
.tr-col-label {
    font-size: .6875rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
.tr-col-label.accent { color: var(--accent); }
.tr-col-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.tr-col-price {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem); letter-spacing: -.02em;
}
.tr-col-price.old {
    color: rgba(255,255,255,.25);
    text-decoration: line-through;
    text-decoration-color: rgba(255,255,255,.15);
}
.tr-col-price.new { color: var(--accent); }
.tr-col-tag {
    font-size: .6875rem; font-weight: 500; letter-spacing: .04em;
    color: rgba(255,255,255,.4);
    border: 1px solid rgba(255,255,255,.1);
    padding: .3rem .75rem; border-radius: 100px;
    white-space: nowrap;
}
.tr-col-tag.accent {
    color: var(--accent);
    border-color: rgba(0,71,255,.25);
}
.tr-vs {
    display: flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 800;
    font-size: .75rem; letter-spacing: .08em;
    color: rgba(255,255,255,.2);
}
.tr-offers {
    padding: var(--pad-section) var(--pad-x);
}
.tr-offers-hdr {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.tr-offers-title {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -0.01em; line-height: .95;
    margin-bottom: .75rem;
}
.tr-offers-sub {
    font-size: .9375rem; color: var(--gray-600); line-height: 1.7;
}
.tr-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; align-items: stretch;
}
.tr-card {
    background: var(--black); color: var(--white);
    border-radius: 1.5rem;
    padding: clamp(2rem, 3.5vw, 2.75rem);
    display: flex; flex-direction: column;
    position: relative; overflow: hidden;
    transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.tr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.15);
}
.tr-card-featured {
    border: 2px solid var(--accent);
    box-shadow: 0 0 0 1px rgba(0,71,255,.15), 0 16px 40px rgba(0,71,255,.12);
}
.tr-card-featured:hover {
    box-shadow: 0 0 0 1px var(--accent), 0 24px 56px rgba(0,71,255,.18);
}
.tr-card-badge {
    display: inline-flex; align-self: flex-start;
    font-size: .625rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    background: var(--accent); color: var(--white);
    padding: .35rem 1rem; border-radius: 100px;
    margin-bottom: 1.25rem;
}
.tr-card-badge--ghost {
    visibility: hidden;
    pointer-events: none;
}
.tr-card-tier {
    font-size: .6875rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: .75rem;
}
.tr-card-price {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.5rem); letter-spacing: -.04em; line-height: 1;
    margin-bottom: .5rem;
}
.tr-card-price sup {
    font-size: .4em; font-weight: 600; vertical-align: super;
    margin-left: .15em;
}
.tr-card-desc {
    font-size: .875rem; line-height: 1.7; color: rgba(255,255,255,.45);
    margin-bottom: 2rem;
}
.tr-card-list {
    list-style: none; display: flex; flex-direction: column;
    gap: .625rem; flex: 1; margin-bottom: 2rem;
}
.tr-card-list li {
    font-size: .875rem; line-height: 1.55; color: rgba(255,255,255,.7);
    padding-left: 1.5rem; position: relative;
}
.tr-card-list li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-size: .75rem; font-weight: 700;
}
.tr-card-btn {
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 500;
    padding: .875rem 1.5rem; border-radius: 1rem;
    text-decoration: none; transition: all .25s;
    border: 1px solid rgba(255,255,255,.12);
    color: var(--white); background: transparent;
}
.tr-card-btn:hover {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.25);
}
.tr-card-btn-primary {
    background: var(--accent); border-color: var(--accent); color: var(--white);
}
.tr-card-btn-primary:hover {
    background: #0038cc; border-color: #0038cc;
}
.tr-hosting {
    padding: var(--pad-section) var(--pad-x);
    background: var(--gray-50);
    border-top: 1px solid var(--border);
}
.tr-hosting-wrap {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}
.tr-hosting-title {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1;
    margin-bottom: 1rem;
}
.tr-hosting-price {
    font-family: var(--display); font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem); color: var(--accent);
    letter-spacing: -.03em; margin-bottom: .5rem;
}
.tr-hosting-price span { font-size: .5em; color: var(--gray-600); font-weight: 400; }
.tr-hosting-text {
    font-size: .9375rem; color: var(--gray-600); line-height: 1.8;
    margin-bottom: 1.5rem;
}
.tr-hosting-features {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem;
}
.tr-hosting-features li {
    font-size: .875rem; color: var(--gray-600); line-height: 1.5;
    padding-left: 1.25rem; position: relative;
}
.tr-hosting-features li::before {
    content: '✓'; position: absolute; left: 0;
    color: var(--accent); font-size: .75rem; font-weight: 600;
}
.tr-faq {
    padding: var(--pad-section) var(--pad-x);
}
.tr-faq-title {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; line-height: 1.05;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}
.tr-faq-list { max-width: 720px; }
.tr-faq-item { border-bottom: 1px solid var(--border); }
.tr-faq-q {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; padding: 1.25rem 0;
    font-size: clamp(.9375rem, 1.5vw, 1.0625rem); font-weight: 500;
    color: var(--black); text-align: left; transition: color .2s;
}
.tr-faq-q:hover { color: var(--accent); }
.tr-faq-icon {
    font-size: 1.375rem; font-weight: 300; flex-shrink: 0;
    color: var(--gray-400); line-height: 1;
    transition: transform .3s cubic-bezier(.16,1,.3,1), color .2s;
}
.tr-faq-item.open .tr-faq-icon { transform: rotate(45deg); color: var(--accent); }
.tr-faq-a {
    display: grid; grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.16,1,.3,1);
}
.tr-faq-item.open .tr-faq-a { grid-template-rows: 1fr; }
.tr-faq-a > p {
    overflow: hidden; min-height: 0;
    font-size: .9375rem; line-height: 1.8; color: var(--gray-600);
    padding-bottom: 1.25rem;
}
.tr-faq-a strong { color: var(--black); font-weight: 500; }
.tr-cta {
    padding: var(--pad-section) var(--pad-x);
    border-top: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    text-align: center; gap: 1.5rem;
}
.tr-cta-title {
    font-family: var(--display);
    font-size: clamp(1.75rem, 4vw, 3rem); letter-spacing: -0.01em; line-height: 1.05;
}
.tr-cta-sub {
    font-size: .9375rem; color: var(--gray-600); max-width: 28rem; line-height: 1.75;
}
.tr-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ─── EQUIPE (PAGE) ─── */
.tm-hero {
  padding: clamp(7rem, 14vw, 11rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.tm-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 80% 30%, rgba(0,71,255,.06) 0%, transparent 70%),
    radial-gradient(ellipse 35% 45% at 15% 70%, rgba(0,71,255,.04) 0%, transparent 65%);
  pointer-events: none;
}
.tm-hero-content { position: relative; z-index: 1; max-width: 52rem; }
.tm-eyebrow {
  font-size: .6875rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  opacity: 0; transform: translateY(1rem);
  animation: fiu .7s cubic-bezier(.16,1,.3,1) .2s forwards;
}
.tm-eyebrow::before { content: ''; width: 1.25rem; height: 1px; background: var(--accent); }
.tm-hero-title {
  font-family: var(--display);
  font-size: clamp(2.75rem, 7vw, 6rem); line-height: .9; letter-spacing: -0.01em;
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  opacity: 0; transform: translateY(1.5rem);
  animation: fiu .9s cubic-bezier(.16,1,.3,1) .35s forwards;
}
.tm-hero-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,.18);
}
.tm-hero-sub {
  font-size: clamp(.875rem, 1.5vw, 1.0625rem); font-weight: 300;
  line-height: 1.85; color: var(--gray-600); max-width: 36rem;
  opacity: 0; transform: translateY(1rem);
  animation: fiu .7s cubic-bezier(.16,1,.3,1) .6s forwards;
}
.tm-section {
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
}
.tm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
}
.tm-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .3s, box-shadow .4s cubic-bezier(.16,1,.3,1), transform .4s cubic-bezier(.16,1,.3,1);
  position: relative; overflow: hidden;
}
.tm-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.tm-card:hover {
  border-color: rgba(0,71,255,.2);
  box-shadow: 0 12px 40px rgba(0,71,255,.08);
  transform: translateY(-4px);
}
.tm-card:hover::before { transform: scaleX(1); }
.tm-avatar {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: var(--accent); color: var(--white);
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -.03em; flex-shrink: 0;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.tm-card:hover .tm-avatar { transform: scale(1.08) rotate(-3deg); }
.tm-header { display: flex; align-items: center; gap: 1rem; }
.tm-name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: -.025em;
  color: var(--black); margin-bottom: .25rem;
}
.tm-role {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent);
}
.tm-bio {
  font-size: .9rem; line-height: 1.75; color: var(--gray-600);
  flex: 1;
}
.tm-skills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto;
}
.tm-skill {
  font-size: .6875rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--black);
  background: var(--white); border: 1px solid var(--border);
  padding: .3rem .75rem; border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.tm-card:hover .tm-skill {
  border-color: rgba(0,71,255,.25);
}
.tm-manifeste {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  background: var(--black); color: var(--white);
  text-align: center; position: relative; overflow: hidden;
}
.tm-manifeste::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: min(500px, 80vw); height: min(500px, 80vw);
  background: radial-gradient(circle, rgba(0,71,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.tm-manifeste-quote {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 3rem); letter-spacing: -.04em; line-height: 1.15;
  max-width: 44rem; margin: 0 auto 1.25rem;
  position: relative; z-index: 1;
}
.tm-manifeste-quote .stroke {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.3);
}
.tm-manifeste-sub {
  font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.3); position: relative; z-index: 1;
}
.tm-cta {
  padding: clamp(4rem, 8vw, 6rem) var(--pad-x);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.75rem;
}
.tm-cta-title {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -0.01em; line-height: .95;
}
.tm-cta-title .stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0,0,0,.2);
}
.tm-cta-sub {
  font-size: .9375rem; color: var(--gray-600); max-width: 30rem; line-height: 1.75;
}
.tm-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ─── FAQ (PAGE) ─── */
.faq-hero{
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;text-align:center;
  padding:clamp(4rem,10vw,6.25rem) var(--pad-x);
  background: var(--gray-50);
}
.faq-hero-bg{
  position:absolute;top:0;left:0;right:0;bottom:0;
  background: var(--gray-50);
}
.faq-hero-content{position:relative;z-index:2;}
.faq-eyebrow{
  font-size:.6875rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase;
  color:var(--accent);margin-bottom:clamp(1rem,2.5vw,1.75rem);
  display:flex;align-items:center;gap:.875rem;
  opacity:0;transform:translateY(1rem);
  animation:fiu .7s cubic-bezier(.16,1,.3,1) .3s forwards;
}
.faq-eyebrow::before{content:'';width:1.375rem;height:1px;background:var(--accent);}
.faq-hero-title{
  font-family:var(--display);
  font-size:clamp(3rem,8vw,6.5rem);line-height:.88;letter-spacing:-0.015em;
  margin-bottom:clamp(1.5rem,3vw,2.25rem);
  opacity:0;transform:translateY(2rem);
  animation:fiu .9s cubic-bezier(.16,1,.3,1) .5s forwards;
  color: var(--black) !important;
}
.faq-hero-title .ow{-webkit-text-stroke:1px rgba(0,0,0,.22); color: var(--black);}
.faq-hero-sub{
  font-size:clamp(.9rem,1.6vw,1.0625rem);font-weight:300;line-height:1.85;
  color:var(--gray-600);max-width:38rem;
  opacity:0;transform:translateY(1rem);
  animation:fiu .7s cubic-bezier(.16,1,.3,1) .8s forwards;
}
.faq-hero-line{
  position:absolute;bottom:0;left:var(--pad-x);right:var(--pad-x);
  height:.5px;background:var(--border);z-index:2;
}
.faq-section{padding:var(--pad-section) var(--pad-x);}
.faq-container{max-width:calc(800px + 10rem);margin:0 auto;}
.faq-guide{
  background:var(--gray-50);
  border:.5px solid var(--border);
  border-radius:var(--r-lg);
  padding:clamp(1.5rem,3vw,2.25rem);
  margin:3rem 0;
  display:flex;flex-direction:column;
  gap:1.5rem;align-items:center;
  text-align:center;
  transition:border-color .3s,transform .3s;
}
.faq-guide:hover{border-color:rgba(0,71,255,.3);transform:translateY(-4px);}
.faq-guide-info h3{
  font-family:var(--display);font-weight:700;
  font-size:clamp(1.125rem,2vw,1.375rem);letter-spacing:-.02em;
  margin-bottom:.5rem;color:var(--black);
}
.faq-guide-info p{
  font-size:.875rem;color:var(--black);line-height:1.7;
}
.faq-guide-btn{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.875rem;font-weight:500;color:var(--white);background:var(--black);
  padding:.75rem 1.5rem;border-radius:100px;
  text-decoration:none;transition:transform .3s;
  white-space:nowrap;
}
.faq-guide-btn:hover{transform:scale(1.05);}
.faq-form-section{
  padding:var(--pad-section) var(--pad-x);
  background:var(--white);
  border-top:.5px solid var(--border);
}
.faq-form-container{max-width:calc(640px + 10rem);margin:0 auto;}
.faq-form-title{
  font-family:var(--display);
  font-size:clamp(1.5rem,4vw,2.5rem);letter-spacing:-0.01em;line-height:1.1;
  margin-bottom:1rem;color:var(--black);
}
.faq-form-sub{
  font-size:.9375rem;color:var(--black);line-height:1.7;
  margin-bottom:2rem;
}
.faq-form{
  background:var(--gray-50);
  border:.5px solid var(--border);
  border-radius:var(--r-lg);
  padding:clamp(1.5rem,3vw,2.25rem);
  display:flex;flex-direction:column;gap:1.25rem;
}
.faq-cta{
  padding:var(--pad-section) var(--pad-x);
  border-top:.5px solid var(--border);
  display:flex;flex-direction:column;align-items:center;text-align:center;gap:1.5rem;
}
.faq-cta-title{
  font-family:var(--display);
  font-size:clamp(1.5rem,4vw,2.5rem);letter-spacing:-0.01em;line-height:1.1;
  color:var(--black);
}
.faq-cta-btns{display:flex;gap:1rem;flex-wrap:wrap;justify-content:center;}

/* ─── ANIMATIONS GLOBALES (REPRISES) ─── */
@keyframes fiu { to { opacity: 1; transform: translateY(0); } }

/* ─── MEDIA QUERIES GLOBALES (REPRISES) ─── */
@media (max-width: 1024px) {
    .tr-cards { grid-template-columns: 1fr 1fr; }
    .tr-cards .tr-card:last-child {
        grid-column: 1 / -1;
        max-width: 520px;
        justify-self: center;
    }
}
@media (max-width: 900px) {
    .tr-compare-hdr { grid-template-columns: 1fr; }
    .tr-table { grid-template-columns: 1fr; gap: 1rem; }
    .tr-vs { padding: .5rem 0; }
    .tr-hosting-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .tr-cards { grid-template-columns: 1fr; }
    .tr-cards .tr-card:last-child { max-width: 100%; }
    .tr-card { padding: 1.5rem; }
    .tr-hosting-features { grid-template-columns: 1fr; }
    .tr-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 640px) {
  .tm-grid { grid-template-columns: 1fr; }
  .tm-cta-btns { flex-direction: column; align-items: center; }
}

