/* ── Styles spécifiques : creation-sites-web.html ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:      #0c0c0e;
      --surface: #0f0f12;
      --border:  rgba(255,255,255,0.07);
      --accent:  #c8f135;
      --text:    #e8e8e2;
      --muted:   #5a5a60;
      --muted2:  #8a8a90;
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Mono', monospace;
      overflow-x: hidden;
    }

    /* noise */
    body::before {
      content: ''; position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 998; opacity: .5;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; justify-content: space-between; align-items: center;
      padding: 1.8rem 4rem;
      border-bottom: 1px solid transparent;
      transition: border-color .4s, background .4s, backdrop-filter .4s;
    }
    nav.scrolled { border-color: var(--border); background: rgba(12,12,14,.88); backdrop-filter: blur(20px); }
    .logo { font-family: 'DM Serif Display', serif; font-size: 1.25rem; letter-spacing: -.02em; color: var(--text); text-decoration: none; display: block; }
    .logo span { color: var(--accent); }
    nav ul { list-style: none; display: flex; gap: 2.5rem; }
    nav ul li a { text-decoration: none; color: var(--muted2); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
    nav ul li a:hover, nav ul li a.active { color: var(--text); }
    .nav-cta { background: var(--accent) !important; color: #0c0c0e !important; padding: .5rem 1.2rem; border-radius: 2px; font-weight: 500 !important; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      align-items: center;
      max-width: 1300px;
      margin: 0 auto;
      padding: 9rem 4rem 5rem;
      gap: 5rem;
      position: relative;
    }

    /* breadcrumb */
    .breadcrumb {
      display: flex; align-items: center; gap: .6rem;
      font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--muted); margin-bottom: 2rem;
      opacity: 0; animation: fadeUp .6s .1s ease forwards;
    }
    .breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb-sep { color: var(--muted); opacity: .4; }
    .breadcrumb-current { color: var(--accent); }

    .hero-eyebrow {
      display: flex; align-items: center; gap: .8rem;
      font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 1.6rem;
      opacity: 0; animation: fadeUp .6s .2s ease forwards;
    }
    .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--accent); }

    .hero-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.8rem, 5vw, 5.2rem);
      line-height: .95; letter-spacing: -.035em;
      opacity: 0; animation: fadeUp .8s .3s ease forwards;
    }
    .hero-title em { font-style: italic; color: var(--muted2); display: block; }
    .hero-title .underline-word {
      position: relative; display: inline-block;
    }
    .hero-title .underline-word::after {
      content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
      height: 3px; background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      animation: lineReveal .6s 1s cubic-bezier(.22,1,.36,1) forwards;
    }

    .hero-desc {
      margin-top: 2.2rem;
      font-size: .82rem; color: var(--muted2); line-height: 1.95; max-width: 48ch;
      opacity: 0; animation: fadeUp .7s .45s ease forwards;
    }
    .hero-desc strong { color: var(--text); font-weight: 500; }

    .hero-ctas {
      display: flex; align-items: center; gap: 1.5rem; margin-top: 2.8rem;
      opacity: 0; animation: fadeUp .7s .58s ease forwards;
    }
    .btn-main {
      display: inline-flex; align-items: center; gap: .8rem;
      background: var(--accent); color: #0c0c0e;
      text-decoration: none; font-family: 'DM Mono', monospace;
      font-size: .74rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
      padding: .9rem 1.8rem; border-radius: 2px;
      transition: opacity .2s, gap .25s;
    }
    .btn-main:hover { opacity: .88; gap: 1.1rem; }
    .btn-ghost {
      font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
      color: var(--muted2); text-decoration: none;
      display: flex; align-items: center; gap: .5rem;
      transition: color .2s, gap .2s;
    }
    .btn-ghost:hover { color: var(--text); gap: .8rem; }

    /* hero right — animated browser mock */
    .hero-right {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; animation: fadeUp .9s .38s ease forwards;
    }

    /* grid bg */
    .hero-right::before {
      content: ''; position: absolute; inset: -30px;
      background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
      background-size: 48px 48px; opacity: .5;
      mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 30%, transparent 100%);
    }

    /* glow */
    .hero-right::after {
      content: ''; position: absolute;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(200,241,53,.07) 0%, transparent 68%);
      border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
      pointer-events: none;
    }

    .browser-mock {
      position: relative; z-index: 2;
      width: 480px;
      background: #0f0f12;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 8px;
      box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.03);
      transform: rotate(-1.5deg);
      transition: transform .4s ease;
    }
    .browser-mock:hover { transform: rotate(0deg) scale(1.01); }

    .browser-bar {
      display: flex; align-items: center; gap: .6rem;
      padding: .9rem 1.2rem;
      border-bottom: 1px solid var(--border);
      background: #0c0c0e;
      border-radius: 8px 8px 0 0;
    }
    .b-dot { width: 10px; height: 10px; border-radius: 50%; }
    .browser-url {
      flex: 1; margin-left: .6rem;
      background: #151518; border: 1px solid var(--border);
      border-radius: 3px; padding: .28rem .8rem;
      font-size: .62rem; color: var(--muted); letter-spacing: .04em;
      display: flex; align-items: center; gap: .4rem;
    }
    .browser-url svg { width: 9px; height: 9px; opacity: .5; }

    .browser-content { padding: 1.4rem; }

    /* hero section mockup */
    .mock-hero-section {
      background: #111114; border-radius: 4px;
      padding: 1.6rem 1.4rem;
      border: 1px solid var(--border);
      margin-bottom: .8rem;
      position: relative; overflow: hidden;
    }
    .mock-hero-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,241,53,.04), transparent);
    }
    .mock-nav-bar {
      display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem;
    }
    .mock-logo-pill { width: 48px; height: 8px; background: rgba(200,241,53,.4); border-radius: 4px; }
    .mock-nav-links { display: flex; gap: .5rem; }
    .mock-nav-link { width: 22px; height: 5px; background: rgba(255,255,255,.07); border-radius: 3px; }
    .mock-nav-cta  { width: 26px; height: 7px; background: rgba(200,241,53,.2); border-radius: 2px; }

    .mock-h1-lines { margin-bottom: 1rem; }
    .mock-h1-line {
      height: 13px; border-radius: 2px;
      background: rgba(255,255,255,.12);
      margin-bottom: .45rem;
    }
    .mock-h1-line.w90 { width: 90%; }
    .mock-h1-line.w70 { width: 70%; background: rgba(255,255,255,.06); }

    .mock-body-lines { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
    .mock-body-line { height: 5px; background: rgba(255,255,255,.05); border-radius: 3px; }
    .mock-body-line.w100 { width: 100%; }
    .mock-body-line.w85  { width: 85%; }
    .mock-body-line.w65  { width: 65%; }

    .mock-btn-row { display: flex; gap: .6rem; }
    .mock-btn-solid { width: 60px; height: 20px; background: rgba(200,241,53,.35); border-radius: 2px; }
    .mock-btn-outline { width: 48px; height: 20px; border: 1px solid rgba(255,255,255,.1); border-radius: 2px; }

    /* cards row */
    .mock-cards-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
    }
    .mock-card {
      background: #141418; border: 1px solid var(--border); border-radius: 3px;
      padding: .8rem .7rem;
    }
    .mock-card-icon { width: 18px; height: 18px; border-radius: 2px; background: rgba(200,241,53,.15); margin-bottom: .5rem; }
    .mock-card-t1 { height: 6px; width: 75%; background: rgba(255,255,255,.1); border-radius: 2px; margin-bottom: .35rem; }
    .mock-card-t2 { height: 4px; width: 90%; background: rgba(255,255,255,.05); border-radius: 2px; }
    .mock-card-t3 { height: 4px; width: 60%; background: rgba(255,255,255,.04); border-radius: 2px; margin-top: .2rem; }

    /* floating badge on mock */
    .mock-badge {
      position: absolute; z-index: 3;
      background: #111114; border: 1px solid rgba(200,241,53,.25);
      border-radius: 4px; padding: .45rem .9rem;
      font-size: .63rem; color: var(--text);
      display: flex; align-items: center; gap: .5rem;
      box-shadow: 0 8px 24px rgba(0,0,0,.5);
      white-space: nowrap;
    }
    .mock-badge .bd { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
    .badge-score { top: -14px; right: 20px; animation: floatB 3.5s ease-in-out infinite; }
    .badge-mobile { bottom: -14px; left: 20px; animation: floatB 3.5s 1.5s ease-in-out infinite; }

    /* ── DIVIDER ── */
    .divider {
      max-width: 1300px; margin: 0 auto; padding: 0 4rem;
      display: flex; align-items: center; gap: 1.2rem;
    }
    .divider-line { flex: 1; height: 1px; background: var(--border); }
    .divider-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }

    /* ── SHARED ── */
    .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .section-eyebrow {
      display: flex; align-items: center; gap: .8rem;
      font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent);
      margin-bottom: 1.5rem;
    }
    .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

    /* ── INCLUS ── */
    .inclus { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
    .inclus-head {
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
      align-items: end; margin-bottom: 4.5rem;
    }
    .inclus-head h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.5vw,3.2rem); letter-spacing: -.03em; line-height: 1.05; }
    .inclus-head h2 em { font-style: italic; color: var(--muted2); }
    .inclus-head p { font-size: .81rem; color: var(--muted2); line-height: 1.9; }
    .inclus-head p strong { color: var(--text); font-weight: 500; }

    .inclus-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5px; background: var(--border);
    }
    .inclus-card {
      background: var(--bg); padding: 2.5rem 2.2rem;
      position: relative; overflow: hidden;
    }
    .inclus-card::after {
      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(.22,1,.36,1);
    }
    .inclus-card:hover::after { transform: scaleX(1); }
    .inclus-icon {
      width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 4px;
      background: var(--surface); display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.4rem; transition: border-color .3s;
    }
    .inclus-card:hover .inclus-icon { border-color: rgba(200,241,53,.3); }
    .inclus-icon svg { width: 19px; height: 19px; }
    .inclus-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; letter-spacing: -.02em; color: var(--text); margin-bottom: .7rem; }
    .inclus-card p { font-size: .76rem; color: var(--muted2); line-height: 1.85; }
    .inclus-bg { position: absolute; bottom: -.8rem; right: .5rem; font-family: 'DM Serif Display', serif; font-size: 6rem; color: rgba(255,255,255,.025); pointer-events: none; user-select: none; line-height: 1; }

    /* ── TYPES DE SITES ── */
    .types-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .types-inner { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
    .types-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; }
    .types-head h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3vw,2.8rem); letter-spacing: -.025em; line-height: 1.05; }
    .types-head h2 em { font-style: italic; color: var(--muted2); }
    .types-head p { font-size: .78rem; color: var(--muted2); max-width: 36ch; line-height: 1.8; text-align: right; }

    .types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: var(--border); }
    .type-card {
      background: var(--bg); padding: 2.8rem 2.5rem;
      cursor: default; position: relative; overflow: hidden;
      transition: background .3s;
    }
    .type-card:hover { background: #111114; }
    .type-num { font-size: .62rem; letter-spacing: .15em; color: var(--muted); margin-bottom: 1.4rem; }
    .type-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.4rem; letter-spacing: -.025em; color: var(--text); margin-bottom: .8rem; transition: color .25s; }
    .type-card:hover h3 { color: var(--accent); }
    .type-card p { font-size: .77rem; color: var(--muted2); line-height: 1.85; margin-bottom: 1.5rem; }
    .type-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
    .type-tag {
      font-size: .6rem; letter-spacing: .08em; text-transform: uppercase;
      padding: .28rem .65rem; border: 1px solid var(--border); border-radius: 2px; color: var(--muted);
      transition: border-color .25s, color .25s;
    }
    .type-card:hover .type-tag { border-color: rgba(200,241,53,.2); color: var(--muted2); }
    .type-arrow {
      position: absolute; bottom: 2.5rem; right: 2.5rem;
      color: var(--muted); opacity: 0; transform: translate(-6px, 6px);
      transition: opacity .25s, transform .25s;
    }
    .type-card:hover .type-arrow { opacity: 1; transform: none; }

    /* ── STACK TECH ── */
    .stack { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
    .stack-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 6rem; align-items: start; }
    .stack-left h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3vw,2.8rem); letter-spacing: -.025em; line-height: 1.05; }
    .stack-left h2 em { font-style: italic; color: var(--muted2); }
    .stack-left p { margin-top: 1.5rem; font-size: .8rem; color: var(--muted2); line-height: 1.9; }

    .stack-right { }
    .stack-category { margin-bottom: 2.2rem; }
    .stack-cat-label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .9rem; }
    .stack-pills { display: flex; flex-wrap: wrap; gap: .5rem; }
    .stack-pill {
      display: flex; align-items: center; gap: .5rem;
      font-size: .7rem; letter-spacing: .05em;
      padding: .45rem 1rem; border: 1px solid var(--border); border-radius: 3px;
      color: var(--muted2); background: var(--surface);
      transition: border-color .25s, color .25s, background .25s;
    }
    .stack-pill:hover { border-color: rgba(200,241,53,.3); color: var(--text); background: rgba(200,241,53,.04); }
    .stack-pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: .5; }

    /* ── PROCESS ── */
    .process-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .process-inner { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
    .process-head { margin-bottom: 3.5rem; }
    .process-head h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3vw,2.8rem); letter-spacing: -.025em; }
    .process-head h2 em { font-style: italic; color: var(--muted2); }
    .process-head p { margin-top: 1rem; font-size: .8rem; color: var(--muted2); max-width: 52ch; line-height: 1.85; }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5px; background: var(--border);
    }
    .proc-step { background: var(--bg); padding: 2rem 1.8rem; position: relative; overflow: hidden; }
    .proc-step::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--accent);
      transform: scaleX(0); transform-origin: left;
      transition: transform .4s cubic-bezier(.22,1,.36,1);
    }
    .proc-step:hover::after { transform: scaleX(1); }
    .proc-num { font-size: .6rem; letter-spacing: .15em; color: var(--muted); margin-bottom: 1.2rem; }
    .proc-step h4 { font-family: 'DM Serif Display', serif; font-size: 1.05rem; letter-spacing: -.015em; color: var(--text); margin-bottom: .6rem; transition: color .25s; }
    .proc-step:hover h4 { color: var(--accent); }
    .proc-step p { font-size: .72rem; color: var(--muted2); line-height: 1.8; }
    .proc-bg-n { position: absolute; bottom: -.5rem; right: .5rem; font-family: 'DM Serif Display', serif; font-size: 5.5rem; color: rgba(255,255,255,.025); pointer-events: none; user-select: none; line-height: 1; }

    /* ── TARIFS ── */
    .tarifs { max-width: 1300px; margin: 0 auto; padding: 6rem 4rem; }
    .tarifs-head { text-align: center; margin-bottom: 3.5rem; }
    .tarifs-head h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.5vw,3rem); letter-spacing: -.03em; line-height: 1.05; }
    .tarifs-head h2 em { font-style: italic; color: var(--muted2); }
    .tarifs-head p { margin-top: 1rem; font-size: .8rem; color: var(--muted2); max-width: 50ch; margin-left: auto; margin-right: auto; line-height: 1.85; }

    .tarifs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
    .tarif-card {
      background: var(--bg); padding: 2.8rem 2.4rem;
      position: relative; overflow: hidden;
      transition: background .3s;
    }
    .tarif-card.featured { background: #111216; }
    .tarif-card.featured::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent);
    }
    .tarif-label { font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
    .tarif-label.feat { color: var(--accent); }
    .tarif-price {
      font-family: 'DM Serif Display', serif; font-size: 3rem; letter-spacing: -.04em; color: var(--text); line-height: 1;
      margin-bottom: .4rem;
    }
    .tarif-price span { font-size: 1.1rem; color: var(--muted2); vertical-align: super; }
    .tarif-from { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.8rem; }
    .tarif-desc { font-size: .77rem; color: var(--muted2); line-height: 1.8; margin-bottom: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
    .tarif-features { list-style: none; display: flex; flex-direction: column; gap: .6rem; margin-bottom: 2rem; }
    .tarif-features li {
      display: flex; align-items: flex-start; gap: .65rem;
      font-size: .74rem; color: var(--muted2); line-height: 1.5;
    }
    .tarif-features li svg { width: 12px; height: 12px; flex-shrink: 0; margin-top: 2px; }
    .tarif-features li.off { opacity: .35; }
    .tarif-cta {
      display: block; text-align: center; text-decoration: none;
      font-size: .72rem; font-family: 'DM Mono', monospace;
      letter-spacing: .08em; text-transform: uppercase;
      padding: .85rem; border-radius: 2px;
      border: 1px solid var(--border); color: var(--muted2);
      transition: border-color .25s, color .25s, background .25s;
    }
    .tarif-cta:hover { border-color: rgba(200,241,53,.3); color: var(--text); }
    .tarif-cta.main-cta { background: var(--accent); color: #0c0c0e; border-color: var(--accent); }
    .tarif-cta.main-cta:hover { opacity: .88; }
    .tarif-note { text-align: center; margin-top: 2rem; font-size: .68rem; color: var(--muted); letter-spacing: .06em; }

    /* ── CTA BANNER ── */
    .cta-banner {
      margin: 0 4rem 8rem;
      border: 1px solid var(--border); border-radius: 4px;
      background: linear-gradient(135deg, #111114, #0f0f0a);
      padding: 5rem; display: flex; justify-content: space-between; align-items: center; gap: 3rem;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: ''; position: absolute; top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(200,241,53,.06) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none;
    }
    .cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,3.5vw,3rem); letter-spacing: -.03em; line-height: 1.05; max-width: 14ch; }
    .cta-banner h2 em { font-style: italic; color: var(--muted2); }
    .cta-right p { font-size: .8rem; color: var(--muted2); line-height: 1.8; margin-bottom: 1.5rem; max-width: 34ch; }

    /* ── FOOTER ── */
    footer { border-top: 1px solid var(--border); padding: 2.5rem 4rem; display: flex; justify-content: space-between; align-items: center; }
    .footer-logo { font-family: 'DM Serif Display', serif; font-size: 1.1rem; color: var(--text); }
    .footer-logo span { color: var(--accent); }
    footer p { font-size: .62rem; color: var(--muted); letter-spacing: .08em; }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-links a:hover { color: var(--text); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { from { opacity:0; transform: translateY(18px); } to { opacity:1; transform:none; } }
    @keyframes lineReveal { from { transform: scaleX(0); } to { transform: scaleX(1); } }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.75);} }
    @keyframes floatB { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-7px);} }

    /* ── RESPONSIVE ── */
    @media(max-width:960px){
      nav{ padding:1.5rem 2rem; } nav ul{ display:none; }
      .hero{ grid-template-columns:1fr; padding:8rem 2rem 4rem; gap:3rem; }
      .hero-right{ display:none; }
      .inclus-head, .types-head{ grid-template-columns:1fr; gap:1.5rem; }
      .types-head p{ text-align:left; }
      .inclus-grid, .types-grid{ grid-template-columns:1fr; }
      .process-steps{ grid-template-columns:1fr 1fr; }
      .tarifs-grid{ grid-template-columns:1fr; }
      .stack-grid{ grid-template-columns:1fr; gap:2.5rem; }
      .inclus,.stack,.tarifs,.process-inner,.types-inner{ padding:4rem 2rem; }
      .cta-banner{ margin:0 2rem 5rem; padding:3rem 2rem; flex-direction:column; align-items:flex-start; }
      footer{ padding:2rem; flex-direction:column; gap:.8rem; text-align:center; }
      .footer-links{ justify-content:center; }
      .divider{ padding:0 2rem; }
    }