:root {
    --noir: #0d0d0d;
    --blanc: #fafaf8;
    --accent: #cf4b00;
    --accent2: #ffb347;
    --gris: #f2f1ee;
    --gris-texte: #6b6860;
    --border: rgba(0,0,0,0.09);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    background: var(--blanc); 
    color: var(--noir); overflow-x: hidden; }
  p,ol,ul { font-size: 0.95rem; 
    line-height: 1.8;
    margin-bottom: 0.8rem;
    }

  h3{
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }
   section { padding: 6rem 5%; }
  .section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
  h2 {font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1rem; }
  .section-sub { color: var(--gris-texte); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1rem; }
   a {color: var(--accent);}


  /* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 10px;
}

  /* NAV */
  .nav-principale {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(250,250,248,0.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; text-decoration: none; color: var(--noir); }
  .logo span { color: var(--accent); }
  .logo-img { display: flex; align-items: center; text-decoration: none; }
  .logo-img img { height: 44px; width: auto; mix-blend-mode: multiply; }
  nav ul { list-style: none; display: flex; gap: 2rem; }
  nav ul a { text-decoration: none; color: var(--noir); font-size: 0.9rem; opacity: 0.7; transition: opacity .2s; }
  nav ul a:hover { opacity: 1; }
  .nav-cta { background: var(--noir); color: var(--blanc) !important; padding: 0.55rem 1.2rem; border-radius: 100px; opacity: 1 !important; font-weight: 600 !important; transition: background .2s !important; }
  .nav-cta:hover { background: var(--accent) !important; }

  /* HERO */
  .hero {padding: 9rem 5% 5rem; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; position: relative; overflow: hidden; text-align: center; }
  .hero::before { content: ''; position: absolute; top: -10%; right: -5%; width: 55vw; height: 55vw; background: radial-gradient(circle, #ffb34722 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
  .hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff3e0; color: #c04a00; padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.82rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid #ffd6b0; }
  .hero-badge::before { content: '●'; font-size: 0.6rem; color: var(--accent); }
  h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.4rem; }
  h1 em { font-style: normal; color: var(--accent); }
  h1 u { text-decoration: none; border-bottom: 4px solid var(--accent2); }
  .hero-sub { font-size: 1.1rem; color: var(--gris-texte); line-height: 1.65; max-width: 480px; margin-bottom: 2.5rem; }
  .cta-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
  .btn-primary { background: var(--accent); color: #fff; padding: 0.85rem 2rem; border-radius: 100px; font-size: 1rem; font-weight: 600; text-decoration: none; display: inline-block; box-shadow: 0 4px 20px rgba(255,77,46,0.35); transition: transform .2s, box-shadow .2s; }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,77,46,0.45); }
  .btn-secondary { color: var(--noir); font-size: 0.95rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; opacity: 0.7; transition: opacity .2s; }
  .btn-secondary:hover { opacity: 1; }
  .hero-trust { margin-top: 2.5rem; display: flex; align-items: center; gap: 1rem; }
  .stars { color: var(--accent2); font-size: 1rem; letter-spacing: 2px; }
  .hero-trust p { font-size: 0.85rem; color: var(--gris-texte); }
  strong { color: var(--noir); }

  /* Hero accueil */
  #hero{
    grid-template-columns: 1fr 1fr;
    text-align: left;
    min-height: 100vh;
  }

  /* Hero mockup */
  .hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
  .mockup-card { background: #fff; border-radius: 20px; box-shadow: 0 20px 80px rgba(0,0,0,0.12); overflow: hidden; width: 100%; max-width: 420px; animation: float 6s ease-in-out infinite; }
  @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
  .mockup-bar { background: var(--gris); padding: 0.7rem 1rem; display: flex; gap: 0.5rem; align-items: center; }
  .mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
  .d1{background:#ff5f56} .d2{background:#ffbd2e} .d3{background:#27c93f}
  .mockup-url { background: #fff; border-radius: 6px; padding: 0.25rem 0.8rem; font-size: 0.75rem; color: var(--gris-texte); margin-left: 0.5rem; flex: 1; }
  .mockup-body { padding: 1.5rem; }
  .mock-hero-block { background: linear-gradient(135deg, #0d0d0d, #1a1a1a); border-radius: 12px; padding: 1.5rem; color: #fff; margin-bottom: 1rem; }
  .mock-h { font-weight:800; font-size:1.1rem; margin-bottom:0.4rem; }
  .mock-p { font-size: 0.72rem; opacity: 0.6; margin-bottom: 0.9rem; }
  .mock-btn { background: var(--accent); color: #fff; display: inline-block; padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.7rem; font-weight: 700; }
  .mock-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .mock-card { background: var(--gris); border-radius: 10px; padding: 0.9rem; }
  .mock-icon { font-size: 1.2rem; margin-bottom: 0.4rem; }
  .mock-card-h { font-size: 0.7rem; font-weight: 700; }
  .mock-card-p { font-size: 0.62rem; color: var(--gris-texte); margin-top: 0.2rem; }
  .badge-float { position: absolute; bottom: -15px; left: -20px; background: #fff; border-radius: 14px; padding: 0.7rem 1.1rem; box-shadow: 0 8px 30px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 0.6rem; animation: float2 5s ease-in-out infinite; }
  @keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .badge-icon { font-size: 1.4rem; }
  .badge-text strong { display: block; font-size: 0.85rem; font-weight: 700; }
  .badge-text span { font-size: 0.72rem; color: var(--gris-texte); }
  .badge-float2 { position: absolute; top: 20px; right: -15px; background: var(--accent); color: #fff; border-radius: 12px; padding: 0.6rem 1rem; font-size: 0.78rem; font-weight: 700; box-shadow: 0 6px 20px rgba(255,77,46,0.4); animation: float3 7s ease-in-out infinite; }
  @keyframes float3 { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-10px) rotate(2deg)} }

  
  /* PROBLÈME */
  .problem-section { background: var(--noir); color: var(--blanc); }
  .problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .problem-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 1.8rem; transition: background .2s; }
  .problem-card:hover { background: rgba(255,255,255,0.08); }

  /* OFFRES */
  .offres-section { background: var(--gris); }
  .offres-grid { display: grid; gap: 1.5rem; margin-top: 3rem; grid-template-columns: repeat(3,1fr); }
  .offre-card { background: #fff; border-radius: 24px; padding: 2rem; border: 2px solid transparent; position: relative; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
  .offre-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
  .offre-card.featured { border-color: var(--accent); box-shadow: 0 10px 50px rgba(255,77,46,0.15); }
  .offre-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 0.3rem 1.2rem; border-radius: 100px; font-size: 0.78rem; font-weight: 700; white-space: nowrap; }
  .offre-price {font-size: 3rem; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin: 0.8rem 0 0.3rem; }
  .offre-price sup { font-size: 1.5rem; vertical-align: super; }
  .offre-price-note { font-size: 0.82rem; color: var(--gris-texte); margin-bottom: 1.2rem; }
  .offre-name {font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
  .offre-desc { font-size: 0.88rem; margin-bottom: 1.2rem; line-height: 1.5; }
  .offre-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
  .offre-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; line-height: 1.45; }
  .offre-list li::before { content:'✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
  .offre-list-excluded { border-top: 1px solid var(--border); padding-top: 0.7rem; }
  .offre-list-excluded li { opacity: 0.35; }
  .offre-list-excluded li::before { content:'✗' !important; color: var(--gris-texte) !important; }
  .offre-cta { display: block; text-align: center; text-decoration: none; padding: 0.8rem; border-radius: 100px; font-weight: 700; font-size: 0.92rem; transition: all .2s; margin-top: auto; }
  .offre-cta-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 20px rgba(255,77,46,0.3); }
  .offre-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,77,46,0.4); }
  .offre-cta-secondary { background: var(--gris); color: var(--noir); }
  .offre-cta-secondary:hover { background: #e5e4e0; }
  .sur-mesure { display: flex; align-items: center; justify-content: space-between; gap: 2rem; background: var(--noir); border-radius: 20px; padding: 2rem 2.5rem; margin-top: 2rem; flex-wrap: wrap; color: var(--blanc);}
  .sur-mesure-cta { background: var(--accent); color: #fff; padding: 0.7rem 1.5rem; border-radius: 100px; font-size: 0.88rem; font-weight: 700; text-decoration: none; white-space: nowrap; transition: transform .2s, box-shadow .2s; flex-shrink: 0; }
  .sur-mesure-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-accent); }

  /* PROCESSUS */
  .process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
  .process-step { position: relative; }
  .step-num {font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; }
  .process-arrow { position: absolute; right: -0.5rem; top: 1.5rem; color: var(--blanc); font-size: 1.5rem; }
  .process-step:last-child .process-arrow { display: none; }
  #processus { background: var(--noir); color: var(--blanc) }

  /* POURQUOI */

  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: start; }
  .why-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
 .profile-box { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 2.5rem; text-align: center; }
  .profile-avatar { width: 80px; height: 80px; margin: 0 auto 1.2rem; }
  .profile-avatar img {width:100%; height:100%; object-fit: cover; border-radius: 50%; object-position: 50% 5%;}
  .profile-box h3 { font-size: 1.3rem; font-weight: 800;}
  .profile-box .role { font-size: 0.85rem; opacity: 0.5; margin-bottom: 1.5rem; }
  .profile-stats { display: flex; justify-content: center; gap: 2.5rem; margin-top: 1.5rem; }
  .stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--noir);}
  .stat span { font-size: 0.78rem; opacity: 0.5; }

  /* ABOUT */
  .about-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 1.8rem 0; }
  .about-approche-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.8rem; }
  .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; justify-content: center; }
  .about-tags span {background: #040404e0; color: white; font-size: 0.78rem; padding: 0.3rem 0.8rem; border-radius: 100px; }
  .about-quote { margin-top: 1.5rem; background: rgba(255,77,46,0.12); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: 1.2rem 1.5rem; }
  .about-quote p { font-style: italic;}
  .about-quote span { font-size: 0.78rem; opacity: 0.5; }

  /* PORTFOLIO */
  #realisations {background: var(--gris);}
  .portfolio-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 2.5rem 0 2rem; }
  .filter-btn { background: var(--blanc); border: none; cursor: pointer; padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; font-family: inherit; color: var(--gris-texte); transition: all .2s; }
  .filter-btn.active, .filter-btn:hover { background: var(--noir); color: #fff; }
  .portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 3rem; }
  .portfolio-item { position: relative; border-radius: 16px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; background: #1a1a2e; transition: transform .3s, box-shadow .3s; }
  .portfolio-item:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.18); }
  .portfolio-item.hidden { display: none; }
  .portfolio-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
  .portfolio-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; }
  .portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; opacity: 0; transition: opacity .25s; pointer-events: none; }
  .portfolio-item:hover .portfolio-overlay { opacity: 1; }
  .portfolio-tag { background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; display: inline-block; margin-bottom: 0.4rem; align-self: flex-start; }
  .portfolio-title { color: #fff; font-size: 0.88rem; font-weight: 600; margin: 0 0 0.4rem; }
  .portfolio-zoom { color: rgba(255,255,255,0.65); font-size: 0.78rem; }
  .portfolio-note { text-align:center; margin-top:2rem; font-size:0.82rem; color:var(--gris-texte); background:var(--gris); padding:1rem 1.5rem; border-radius:12px; }
  .portfolio-note code { background:#fff; padding:0.1rem 0.4rem; border-radius:4px; font-size:0.78rem; }

  /* LIGHTBOX */
  .lightbox { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1rem; visibility: hidden; opacity: 0; transition: opacity .3s, visibility .3s; }
  .lightbox.open { visibility: visible; opacity: 1; }
  .lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.88); backdrop-filter: blur(6px); cursor: pointer; }
  .lightbox-box { position: relative; z-index: 1; background: #fff; border-radius: 20px; width: min(92vw, 800px); display: flex; flex-direction: column; overflow: hidden; transform: scale(0.88) translateY(30px); transition: transform .35s cubic-bezier(.34,1.56,.64,1); box-shadow: 0 40px 120px rgba(0,0,0,0.5); }
  .lightbox.open .lightbox-box { transform: scale(1) translateY(0); }
  .lb-close { position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2; background: rgba(0,0,0,0.15); border: none; cursor: pointer; width: 34px; height: 34px; border-radius: 50%; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: background .2s; color: #fff; }
  .lb-close:hover { background: rgba(0,0,0,0.35); }
  .lb-stage { position: relative; background: #111; height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .lb-stage img { max-width: 100%; max-height: 340px; object-fit: contain; display: block; }
  .lb-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 2rem; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; z-index: 1; line-height: 1; }
  .lb-arrow:hover { background: rgba(255,255,255,0.28); }
  .lb-prev { left: 0.8rem; }
  .lb-next { right: 0.8rem; }
  .lb-info { padding: 1.2rem 1.5rem 1.4rem; }
  .lb-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.5rem; }
  .lb-tag { background: #fff0ed; color: var(--accent); font-size: 0.72rem; font-weight: 700; padding: 0.2rem 0.7rem; border-radius: 100px; white-space: nowrap; }
  .lb-title { font-size: 1rem; font-weight: 800; margin: 0; }
  .lb-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.6rem; }
  .lb-caption { font-size: 0.85rem; color: var(--gris-texte); flex: 1; }
  .lb-dots { display: flex; gap: 0.4rem; }
  .lb-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gris); border: none; cursor: pointer; transition: all .2s; padding: 0; }
  .lb-dot.active { background: var(--accent); transform: scale(1.3); }

  /* POURQUOI CHOISIR */
  .why-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .why-feature-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; transition: transform .2s, box-shadow .2s; }
  .why-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  
  /* TÉMOIGNAGES */
  .temoignages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
  .temoignage { background: #fff; border-radius: 20px; padding: 2rem; border: 1px solid var(--border); transition: transform .2s, box-shadow .2s; }
  .temoignage:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
  .temoignage .stars { display: block; margin-bottom: 1rem; font-size: 0.9rem; }
  .temoignage blockquote { font-size: 0.95rem; line-height: 1.65; color: #333; margin-bottom: 1.5rem; font-style: italic; }
  .temoignage-author { display: flex; align-items: center; gap: 0.8rem; }
  .author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gris); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
  .author-name { font-size: 0.88rem; font-weight: 700; }
  .author-role { font-size: 0.78rem; }

  /* FAQ */
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin-top: 3rem; border-radius: 20px; overflow: hidden; }
  .faq-item { background: #fff; padding: 1.8rem 2rem; }
   
  /* CTA FINAL */
  .cta-section { background: var(--noir); color: var(--blanc); text-align: center; padding: 7rem 5%; position: relative; overflow: hidden; }
  .cta-section h2 {margin: 0 auto 1.2rem; }
  .cta-section p { margin-bottom: 1.5rem; }

  /* CONTACT */
  .contact-section { padding: 6rem 5%; }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  label { font-size: 0.82rem; font-weight: 600; }
  input, textarea, select { border: 1.5px solid var(--border); border-radius: 10px; padding: 0.75rem 1rem; font-family: inherit; font-size: 0.9rem; background: var(--blanc); color: var(--noir); transition: border-color .2s; outline: none; width: 100%; }
  input:focus, textarea:focus, select:focus { border-color: var(--accent); }
  textarea { resize: vertical; min-height: 120px; }
  .btn-submit { background: var(--accent); color: #fff; border: none; cursor: pointer; padding: 0.9rem 2rem; border-radius: 100px; font-size: 1rem; font-weight: 700; font-family: inherit; transition: transform .2s, box-shadow .2s; align-self: flex-start; }
  .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,77,46,0.4); }
  .contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
  .contact-info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
  .contact-info-item h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; }
  .urgence-box { background: #fff3e0; border: 1px solid #ffd6b0; border-radius: 16px; padding: 1.5rem; margin-top: 2rem; }
  .urgence-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
  .urgence-box p { font-size: 0.84rem; color: var(--gris-texte); line-height: 1.6; }
 
  /* FOOTER */
  footer { background: var(--noir); color: rgba(255,255,255,0.4); padding: 2rem 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
  footer a:hover { color: #fff; }

  /* AUTRES */
   .page-date { font-size: 0.82rem; color: var(--gris-texte); margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
    .info-box { background: var(--gris); border-radius: 12px; padding: 1.2rem 1.5rem; margin: 1rem 0 1.5rem; }
  .info-box p:last-child { margin: 0; }
  .content { margin: 0 auto; padding: 8rem 5% 6rem; }
  .offre-recap { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 1.5rem 0; }
  .offre-recap-card { background: var(--gris); border-radius: 12px; padding: 1.2rem; text-align: center; }
  .offre-recap-card strong { display: block; font-size: 1.3rem; margin-bottom: 0.3rem; }
  .offre-recap-card span { font-size: 0.8rem; }

  /* TABLE */

  .table-wrapper {width: 100%; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  font-size: 0.9rem;
}
.price-table thead { background: var(--noir); color: #fff; }
.price-table thead th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
}

.price-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #fff8f5; }
.price-table td { padding: 0.9rem 1.2rem; background: #fff; color: #333; }
.price-table td:not(:first-child) { font-weight: 600; }
.price-table td:first-child { font-weight: 500; color: var(--noir); }
.price-table tr.highlight td { background: #fff8f5; }
.price-table tr.highlight td:first-child { color: var(--accent); font-weight: 700; }


  /* PLAN DU SITE */
.page-subtitle { font-size: 1rem; margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
  .sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .sitemap-category { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 1.8rem; }
  .sitemap-category-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
  .sitemap-icon { font-size: 1.5rem; }
  .sitemap-category-title { font-size: 1rem; font-weight: 800; }
  .sitemap-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .sitemap-links li a { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; font-size: 0.9rem; padding: 0.4rem 0; transition: color .2s; }
  .sitemap-links li a:hover { color: var(--accent); }
  .sitemap-links li a::before { content: '→'; font-size: 0.75rem; color: var(--accent); flex-shrink: 0; }
  .sitemap-links .anchor { font-size: 0.78rem; opacity: 0.6; margin-left: auto; }
  
  /* BLOG */
   /* HERO BLOG */
  .blog-hero { padding: 9rem 5% 1rem; margin: 0 auto; }
  .blog-hero p { font-size: 1.05rem; line-height: 1.7; }

  /* FILTRES */
  .blog-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; padding: 0 5%; max-width: 900px; margin: 2rem auto; }
  .blog-filter-btn { background: var(--gris); border: none; cursor: pointer; padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.83rem; font-weight: 600; font-family: inherit; color: var(--gris-texte); transition: all .2s; }
  .blog-filter-btn.active, .blog-filter-btn:hover { background: var(--noir); color: #fff; }
  .tag-seo { background: #e8f5e9; color: #2e7d32; }
  .tag-marketing { background: #f3e5f5; color: #6a1b9a; }
  .tag-com { background: #e3f2fd; color: #1565c0; }

  /* GRILLE ARTICLES */
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 0 5% 6rem; max-width: 1200px; margin: 0 auto; grid-auto-flow: dense; }

  /* CARTE ARTICLE */
  .article-card { background: #fff; border-radius: 20px; border: 1px solid var(--border); overflow: hidden; transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
  .article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.09); }
  .article-card.featured { grid-column: span 2; flex-direction: row; }
  .article-thumb { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; flex-shrink: 0; }
  .article-thumb img {width:100%; height:100%;}
  .article-card.featured .article-thumb { width: 55%; aspect-ratio: auto; font-size: 5rem; }
  .article-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
  .article-title {font-size: 1.05rem; font-weight: 800; line-height: 1.25; margin-bottom: 0.6rem; letter-spacing: -0.02em; }
  .article-card.featured .article-title { font-size: 1.3rem; }
  .article-excerpt { font-size: 0.88rem; line-height: 1.65; margin-bottom: 1.2rem; flex: 1; }
  .article-date { font-size: 0.78rem; color: var(--gris-texte); }
  .article-read { font-size: 0.82rem; font-weight: 600; color: var(--accent); text-decoration: none; display: inline-flex; align-items: center; gap: 0.3rem; transition: gap .2s; }
  .article-read:hover { gap: 0.6rem; }
  .article-card a { text-decoration: none; color: inherit; display: contents; }


   /* NEWSLETTER */
  .newsletter { background: var(--noir); padding: 5rem 5%; text-align: center; }
  .newsletter h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
  .newsletter p { color: rgba(255,255,255,0.55); margin-bottom: 2rem; }
  .newsletter-form { display: flex; gap: 0.8rem; max-width: 420px; margin: 0 auto; }
  .newsletter-form input { flex: 1; border: 1.5px solid rgba(255,255,255,0.15); border-radius: 100px; padding: 0.75rem 1.2rem; font-family: inherit; font-size: 0.9rem; background: rgba(255,255,255,0.06); color: #fff; outline: none; transition: border-color .2s; }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
  .newsletter-form input:focus { border-color: var(--accent); }
  .newsletter-form button { background: var(--accent); color: #fff; border: none; cursor: pointer; padding: 0.75rem 1.4rem; border-radius: 100px; font-size: 0.9rem; font-weight: 700; font-family: inherit; white-space: nowrap; transition: transform .2s, box-shadow .2s; }
  .newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,77,46,0.4); }

  /* FIN BLOG */

/* ARTICLE */
  /* HEADER ARTICLE */
  .article-tags { display: flex; gap: 0.5rem; margin-bottom: 1.2rem; }
  .article-tag { font-size: 0.72rem; font-weight: 700; padding: 0.25rem 0.7rem; border-radius: 100px; background: #fff3e0; color: #e65100; }
  .article-meta { display: flex; align-items: center; gap: 1.2rem; padding: 1.2rem 0; border-top: 1px solid var(--border); }
  .meta-text { flex: 1; }
  .meta-author { font-size: 0.88rem; font-weight: 600; }
  .meta-date { font-size: 0.78rem; color: var(--gris-texte); }
  .meta-read { font-size: 0.78rem; color: var(--gris-texte); margin-left: auto; background: var(--gris); padding: 0.3rem 0.8rem; border-radius: 100px; }

  /* COVER IMAGE */
  .article-cover { width: 100%; aspect-ratio: 21/9; margin-bottom: 2.5rem; }
  .article-cover img{ width:100%; height:100%; object-fit:cover; border-radius:16px;}

  /* CONTENU */
  .article-content ul, .article-content ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
  .article-content strong { color: var(--noir); font-weight: 600; }
  .article-content em { font-style: italic; color: var(--gris-texte); }

  /* BLOCS SPÉCIAUX */
  .highlight-box { background: #fff8f0; border-left: 4px solid var(--accent); border-radius: 0 12px 12px 0; padding: 1.2rem 1.5rem; margin: 2rem 0; }
  .highlight-box strong { color: var(--accent); }

  /* VERDICT CARDS */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}
.verdict-card {
  border-radius: 16px;
  padding: 1.5rem;
}
.verdict-card.oui { background: #e8f5e9; }
.verdict-card.non { background: #fdecea; }
.verdict-card .verdict-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.verdict-card.oui .verdict-label { color: #1a7f37; }
.verdict-card.non .verdict-label { color: #c0392b; }
.verdict-card ul { padding-left: 1.2rem; margin: 0; }
.verdict-card li { font-size: 0.88rem; color: #333; line-height: 1.7; margin-bottom: 0.3rem; }

/* CAS D'USAGE */
.cas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.cas-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem;
  transition: transform .2s, box-shadow .2s;
}
.cas-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.07); }
.cas-emoji { font-size: 1.6rem; margin-bottom: 0.6rem; }
.cas-card h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.cas-card p { font-size: 0.85rem; margin: 0; }
.cas-card .cas-verdict {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}
.cas-verdict.ok { background: #e8f5e9; color: #1a7f37; }
.cas-verdict.limit { background: #fff8e1; color: #b45309; }
.cas-verdict.non { background: #fdecea; color: #c0392b; }


  .tip-box { background: var(--gris); border-radius: 16px; padding: 1.5rem; margin: 2rem 0; }
  .tip-box .tip-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; }
  .stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2rem 0; }
  .stat-card { background: var(--noir); color: #fff; border-radius: 16px; padding: 1.5rem; text-align: center; }
  .stat-card strong { display: block; font-size: 2rem; font-weight: 800; color: var(--accent2); margin-bottom: 0.3rem; }
  .stat-card span { font-size: 0.8rem; opacity: 0.6; line-height: 1.4; display: block; }

  /* SÉPARATEUR */
  .article-divider { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }

  /* AUTEURE */
  .author-box { background: var(--gris); border-radius: 20px; padding: 1.8rem; display: flex; gap: 1.2rem; align-items: flex-start; margin: 3rem 0; }
  .author-box-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
  .author-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
  .author-box .role { font-size: 0.8rem; color: var(--accent); font-weight: 600; margin-bottom: 0.6rem; }
  
  /* CTA FIN D'ARTICLE */
  .article-cta { background: var(--noir); border-radius: 20px; padding: 2.5rem; text-align: center; margin: 2rem 0; }
  .article-cta h3 {font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
  .article-cta p { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin-bottom: 1.5rem; }
  .article-cta a { background: var(--accent); color: #fff; text-decoration: none; padding: 0.8rem 2rem; border-radius: 100px; font-weight: 700; font-size: 0.95rem; display: inline-block; transition: transform .2s, box-shadow .2s; }
  .article-cta a:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,77,46,0.4); }

  /* ARTICLES SUIVANTS */
  .related h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.2rem; letter-spacing: -0.02em; }
  .related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .related-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; display: block; }
  .related-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
  .related-tag { font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; background: #e3f2fd; color: #1565c0; display: inline-block; margin-bottom: 0.5rem; }
  
    /* SOMMAIRE STICKY */
  .article-layout { display: grid; grid-template-columns: 220px 1fr; gap: 4rem; align-items: start; }
  .toc { position: sticky; top: 7rem; }
  .toc-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 1rem; }
  .toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0; border-left: 2px solid var(--border); }
  .toc-list li a { font-size: 0.82rem; color: var(--gris-texte); text-decoration: none; display: block; padding: 0.45rem 0 0.45rem 1rem; transition: color .2s; line-height: 1.4; border-left: 2px solid transparent; margin-left: -2px; }
  .toc-list li a:hover { color: var(--noir); }
  .toc-list li a.active { color: var(--accent); font-weight: 600; border-left-color: var(--accent); }
  .article-content h2 { scroll-margin-top: 9rem; margin-top: 3rem;}

/* FIN ARTICLE */

/* FIL D'ARIANE */
  .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gris-texte);
  margin-bottom: 0.8rem;
}
.breadcrumb a {
  color: var(--gris-texte);
  text-decoration: none;
  transition: color .2s;
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }

/* PAGE OFFRES */

.hero-reassurance { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-reassurance span { font-size: 0.85rem; color: var(--gris-texte); display: flex; align-items: center; gap: 0.4rem; }
.hero-reassurance span::before { content: '✓'; color: var(--accent); font-weight: 800; }

/* ============================================================
   COMPARATIF TABLEAU
   ============================================================ */
.comparatif-table { width: 100%; border-collapse: collapse; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.comparatif-table thead { background: var(--noir); color: #fff; }
.comparatif-table thead th { padding: 1.2rem 1.5rem; font-size: 0.9rem; font-weight: 700; text-align: center; }
.comparatif-table thead th:first-child { text-align: left; width: 35%; }
.comparatif-table thead th.col-featured { background: var(--accent); }
.col-featured-label { font-size: 0.65rem; display: block; font-weight: 600; opacity: 0.8; margin-top: 0.2rem; letter-spacing: 0.05em; text-transform: uppercase; }

.comparatif-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.comparatif-table tbody tr:last-child { border-bottom: none; }
.comparatif-table tbody tr:hover { background: #fff8f5; }
.comparatif-table tbody tr.group-header { background: var(--gris); }
.comparatif-table tbody tr.group-header td { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); padding: 0.6rem 1.5rem; }

.comparatif-table td { padding: 1rem 1.5rem; font-size: 0.88rem; background: #fff; }
.comparatif-table td:first-child { color: var(--noir); font-weight: 500; }
.comparatif-table td:not(:first-child) { text-align: center; }
.comparatif-table td.col-featured { background: #fff8f5; }

.check { color: var(--accent); font-size: 1.1rem; font-weight: 800; }
.cross { color: #ccc; font-size: 1.1rem; }
.partial { font-size: 0.8rem; color: var(--gris-texte); font-style: italic; }


  /* HAMBURGER */
  .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 110; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--noir); border-radius: 2px; transition: all .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


  .mobile-menu {
    display: none;
    position: fixed; top: 88px; left: 0; right: 0; z-index: 99;
    background: rgba(250,250,248,0.98); backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 5% 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-10px); opacity: 0;
    transition: transform .3s, opacity .3s;
    pointer-events: none;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .mobile-menu a { font-size: 1.1rem; font-weight: 500; color: var(--noir); text-decoration: none; padding: 0.8rem 0; border-bottom: 1px solid var(--border); transition: color .2s; }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu-cta { background: var(--accent) !important; color: #fff !important; text-align: center; border-radius: 100px; padding: 0.85rem !important; margin-top: 1rem; font-weight: 700 !important; border-bottom: none !important; }

  /* RESPONSIVE */
  @media (max-width: 960px) {
    .hero { grid-template-columns: 1fr; padding-top: 7rem; }
    .hero-visual, .nav-links, .process-arrow { display: none; }
    .problems-grid, .process-grid,.portfolio-grid, .why-cards-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
    .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .temoignages-grid, .faq-grid, .offres-grid { grid-template-columns: 1fr; }
    .hamburger, .mobile-menu { display: flex; }
    .article-layout { grid-template-columns: 1fr; }
    .toc { position: static; border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem 1.4rem; background: var(--gris); margin-bottom: 2rem; }
    .toc-list { border-left: none; }
    .toc-list li a { padding: 0.4rem 0; border-left: none; margin-left: 0; }
    .article-card.featured { grid-column: span 1; flex-direction: column; }
  }
  @media (max-width: 600px) {
     .stat-grid, .offre-recap ,.why-cards-grid, .problems-grid, .process-grid, .form-row , .portfolio-grid, .sitemap-grid,.related-grid, .blog-grid, .verdict-grid, .cas-grid { 
      grid-template-columns: 1fr; }
    .lb-stage { height: 240px; }
     footer { flex-direction: column; align-items: flex-start; gap: 1rem;}
    footer > div:last-child { display: flex; flex-direction: column; gap: 0.8rem;}
    .author-box, .article-card.featured { flex-direction: column; }
    .article-card.featured .article-thumb { width: 100%; }
    .newsletter-form { flex-direction: column; }
     .price-table,  .comparatif-table { font-size: 0.72rem; }
  .price-table thead th, .price-table td, .comparatif-table thead th, .comparatif-table td { padding: 0.4rem 0.5rem; }

  }
