/*
	Theme Name: LMAG
	Theme URI: https://fw16.fr
	Description: 
	Author: FW16
	Author URI: https://fw16.fr
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

:root{
    --ink:#12181F;
    --paper:#FAFBFC;
    --muted: rgba(18,24,31,0.62);
    --line: rgba(18,24,31,0.09);
    --blue:#1487CC;
    --blue-soft:#E9F3FA;
    --green:#48A93B;
    --green-soft:#EBF6E7;
    --violet:#7A57C9;
    --violet-soft:#F0EBFA;
    --teal:#2E9683;
    --teal-soft:#E7F5F2;
    --navy:#1487CC;
    --max: 1220px;
    --shadow-sm: 0 10px 30px -12px rgba(18,24,31,0.16);
    --shadow-md: 0 24px 60px -18px rgba(18,24,31,0.24);
    --shadow-lg: 0 34px 90px -24px rgba(18,24,31,0.30);
  }
  *{box-sizing:border-box; padding:0;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Space Grotesk', sans-serif;
    letter-spacing:-0.025em;
    line-height:1.04;
    font-weight:700;
  }
  .eyebrow{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    font-weight:600;
  }
  a{color:inherit; text-decoration:none;}
  img{display:block; max-width:100%;}
  button{font-family:inherit;}
  :focus-visible{outline:2.5px solid var(--blue); outline-offset:3px; border-radius:4px;}
  .wrap{max-width:var(--max); margin:0 auto; padding:0 32px;}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- ambient blobs (depth, NOT a color blend — single-hue soft glow) ---------- */
  .blob{ position:absolute; border-radius:50%; filter:blur(60px); pointer-events:none; z-index:0; }

  /* ---------- NAV ---------- */
  nav{
    position:sticky; top:0; z-index:50;
    background:rgba(250,251,252,0.78);
    backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    transition:box-shadow .3s ease;
  }
  nav.scrolled{ box-shadow:0 8px 30px -18px rgba(18,24,31,0.25); }
  nav .wrap{ display:flex; align-items:center; justify-content:space-between; height:80px; }
  .brand{display:flex; align-items:center; gap:11px;}
  .brand-word{ font-family:'Space Grotesk'; font-weight:700; font-size:22px; letter-spacing:-0.01em; display:inline-flex; }
  .brand-word .a{ color:var(--ink); }
  .brand-word .b{ color:var(--blue); }
  .brand-suffix{
    font-family:'IBM Plex Mono'; font-size:10.5px; font-weight:600;
    letter-spacing:0.07em; text-transform:uppercase; opacity:0.5;
    border-left:1px solid var(--line); padding-left:11px; margin-left:2px;
    display:none;
  }
  @media (min-width:600px){ .brand-suffix{display:block;} }
  .nav-links{display:flex; align-items:center; gap:2px;}
  .nav-links a{
    display:flex; align-items:center; gap:7px;
    font-size:14px; font-weight:600; opacity:0.68;
    padding:9px 15px; border-radius:100px;
    transition:opacity .18s, background .18s;
  }
  .nav-links a:hover{opacity:1; background:rgba(18,24,31,0.05);}
  .nav-links a .dot{width:6.5px; height:6.5px; border-radius:50%;}
  .nav-cta{
    background:var(--ink); color:white;
    padding:11px 22px; border-radius:100px;
    font-size:14px; font-weight:600;
    box-shadow:var(--shadow-sm);
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  }
  .nav-cta:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); background:var(--blue); }
  .nav-mobile-hide{display:flex;}
  @media (max-width:780px){ .nav-mobile-hide{display:none;} }

  /* ---------- HERO ---------- */
  header.hero{ padding:64px 0 0; position:relative; overflow:hidden; }
  .hero-photo{
    position:absolute; inset:0; z-index:0;
  }
  .hero-photo img{
    width:100%; height:100%; object-fit:cover; object-position:center 30%;
  }
  .hero-photo::after{
    content:''; position:absolute; inset:0;
    background:rgba(10,15,22,0.68);
  }
  .hero-photo::before{
    content:''; position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(10,15,22,0.35) 0%, rgba(10,15,22,0.78) 100%);
  }
  .blob-blue{ width:420px; height:420px; background:var(--blue); opacity:0.13; top:-140px; left:-120px; }
  .blob-green{ width:360px; height:360px; background:var(--green); opacity:0.14; top:60px; right:-140px; }

  .ticker-pill{
    display:inline-flex; align-items:center; gap:10px;
    background:white; border:1px solid var(--line); border-radius:100px;
    padding:8px 8px 8px 16px; box-shadow:var(--shadow-sm);
    margin-bottom:26px; overflow:hidden; max-width:100%;
  }
  .ticker-pill .live-dot{ width:7px; height:7px; border-radius:50%; background:var(--green); flex-shrink:0; animation:pulseDot 2s ease-in-out infinite; }
  @keyframes pulseDot{ 0%,100%{opacity:1;} 50%{opacity:0.35;} }
  .ticker-viewport{ width:280px; overflow:hidden; position:relative; height:16px; }
  @media (max-width:480px){ .ticker-viewport{ width:180px; } }
  .ticker-track{ display:flex; position:absolute; white-space:nowrap; animation:tickerMove 16s linear infinite; }
  .ticker-track span{
    font-family:'IBM Plex Mono'; font-size:11.5px; font-weight:600;
    letter-spacing:0.06em; text-transform:uppercase; color:var(--muted);
    padding-right:22px;
  }
  @keyframes tickerMove{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

  .hero-grid{
    position:relative; z-index:1;
    display:block;
    padding-bottom:100px;
  }
  .hero h1{
    font-size:clamp(38px, 5.4vw, 66px);
    margin-bottom:24px;
    max-width:20ch;
  }
  .hero h1 mark{
    background:none; color:var(--green);
  }
  .hero p.lede{
    font-size:18px; line-height:1.6; max-width:50ch; opacity:0.7; margin-bottom:32px;
  }
  .hero-actions{display:flex; gap:14px; flex-wrap:wrap;}
  .btn-primary{
    background:var(--ink); color:white;
    padding:16px 28px; font-weight:600; font-size:15px; border-radius:100px;
    box-shadow:var(--shadow-sm);
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
  }
  .btn-primary:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); background:var(--blue); }
  .btn-ghost{
    background:white; border:1px solid var(--line); padding:15px 26px; border-radius:100px;
    font-weight:600; font-size:15px; box-shadow:var(--shadow-sm);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s;
  }
  .btn-ghost:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:var(--ink); }

  /* Hero floating cards */
  .sticker-field{ position:relative; min-height:420px; }
  .sticker{
    position:absolute; width:156px; background:white;
    border-radius:12px; box-shadow:var(--shadow-md);
    padding:22px 18px 24px; text-align:center;
    animation:bob 6s ease-in-out infinite;
  }
  .sticker img{width:100%; height:auto; margin:0 auto;}
  .sticker.s1{ top:6px; right:8%; --r:-5deg; animation-delay:0s; box-shadow:0 30px 70px -20px rgba(20,135,204,0.35);}
  .sticker.s2{ top:170px; right:2%; --r:4deg; animation-delay:1.4s; width:136px; box-shadow:0 30px 70px -20px rgba(122,87,201,0.32);}
  .sticker.s3{ top:330px; right:20%; --r:-3deg; animation-delay:2.8s; width:128px; box-shadow:0 30px 70px -20px rgba(46,150,131,0.32);}
  .sticker{ transform:rotate(var(--r)); }
  @keyframes bob{ 0%,100%{transform:translateY(0) rotate(var(--r));} 50%{transform:translateY(-10px) rotate(var(--r));} }
  @media (max-width:920px){ .sticker-field{min-height:1px;} .sticker{position:static; display:inline-block; margin:8px 12px 0 0; animation:none; transform:rotate(0);} .hero-stickers-row{display:flex; flex-wrap:wrap;} }

  /* Stat card (contained bento, not full-bleed) */
  .stat-card{
    position:relative; z-index:1;
    background:var(--navy); color:white;
    border-radius:14px; box-shadow:var(--shadow-lg);
    margin:0 32px 0; max-width:calc(var(--max) - 64px); margin-left:auto; margin-right:auto;
    overflow:hidden;
  }
  .stat-grid{ display:grid; grid-template-columns:repeat(3,1fr); position:relative; z-index:1; }
  .stat-cell{ padding:38px 34px; }
  .stat-cell + .stat-cell{ border-left:1px solid rgba(255,255,255,0.12); }
  @media (max-width:700px){ .stat-grid{grid-template-columns:1fr;} .stat-cell + .stat-cell{border-left:none; border-top:1px solid rgba(255,255,255,0.12);} }
  .stat-cell .num{ font-family:'Space Grotesk'; font-size:42px; font-weight:700; }
  .stat-cell .lbl{ font-size:13.5px; opacity:0.62; margin-top:6px; }

  /* ---------- STORY / ABOUT ---------- */
  .story{ padding:104px 0 40px; }
  .story-grid{ display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
  @media (max-width:880px){ .story-grid{grid-template-columns:1fr; gap:36px;} }
  .story-photo{
    border-radius:14px; overflow:hidden; box-shadow:var(--shadow-md);
    aspect-ratio:4/3;
  }
  .story-photo img{ width:100%; height:100%; object-fit:cover; }
  .story h2{ font-size:clamp(26px,3vw,36px); margin:14px 0 20px; }
  .story p{ font-size:16px; line-height:1.7; opacity:0.72; margin-bottom:16px; }
  .story p:last-of-type{ margin-bottom:0; }

  /* ---------- DOMAIN CHIPS ---------- */
  .domains{ padding:100px 0 70px; }
  .domains .eyebrow{ color:var(--blue); }
  .domains h2{ font-size:clamp(26px,3vw,36px); margin:14px 0 30px; max-width:24ch; }
  .chip-row{ display:flex; flex-wrap:wrap; gap:10px; }
  .chip{
    border-radius:100px; padding:11px 20px;
    font-weight:600; font-size:14px; background:white; border:1px solid var(--line);
  }
  .chip.on{ background:var(--green); color:white; border-color:var(--green); }

  /* ---------- SECTION SHELL ---------- */
  section{position:relative;}
  .section-head{max-width:640px; margin-bottom:52px;}
  .section-head h2{font-size:clamp(28px,3.4vw,42px); margin-top:14px;}
  .section-head p{font-size:16.5px; opacity:0.68; margin-top:14px; line-height:1.6;}

  .pill-label{
    display:inline-flex; align-items:center; gap:7px;
    background:rgba(255,255,255,0.18); color:white;
    padding:7px 14px; border-radius:100px; font-family:'IBM Plex Mono'; font-size:11.5px;
    font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
    margin-bottom:6px;
  }

  /* ---------- PRODUCT BLOCKS (solid color, no gradient) ---------- */
  .product{ padding:110px 0; position:relative; overflow:hidden; color:white; }
  .product.p-docdoc{ background:var(--blue); }
  .product.p-kiddoc{ background:var(--violet); }
  .product.p-neopsy{ background:var(--teal); }
  .product-grid{ position:relative; z-index:1; display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; align-items:center; }
  .product:nth-child(even) .product-grid{ direction:rtl; }
  .product:nth-child(even) .product-grid > *{ direction:ltr; }
  @media (max-width:880px){
    .product-grid{grid-template-columns:1fr; direction:ltr !important;}
    .product-grid > *{direction:ltr !important;}
  }
  .product-visual{
    display:flex; align-items:center; justify-content:center;
    background:white; border-radius:16px; box-shadow:0 40px 90px -20px rgba(0,0,0,0.28);
    padding:48px; color:var(--ink);
  }
  .product-visual img{ width:100%; max-width:220px; }
  .product-copy h3{font-size:clamp(32px,3.8vw,48px); margin:16px 0 14px; color:white;}
  .product-copy .tagline{
    font-size:17px; font-weight:600; opacity:0.92; margin-bottom:18px;
    font-family:'Space Grotesk';
  }
  .product-copy p.desc{font-size:16px; line-height:1.65; opacity:0.86; max-width:48ch; margin-bottom:28px;}
  .feature-chips{display:flex; flex-wrap:wrap; gap:10px; margin-bottom:32px;}
  .feature-chips .chip{
    background:rgba(255,255,255,0.16); color:white; border:1px solid rgba(255,255,255,0.28);
    font-size:13.5px; backdrop-filter:blur(6px);
  }
  .product-link{
    display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px;
    background:white; padding:13px 22px; border-radius:100px; color:var(--ink);
    box-shadow:0 14px 30px -10px rgba(0,0,0,0.35);
    transition:transform .22s ease, box-shadow .22s ease;
  }
  .product-link:hover{ transform:translateY(-3px); box-shadow:0 20px 40px -10px rgba(0,0,0,0.4); }

  /* ---------- STUDIO SECTION ---------- */
  .studio{ background:var(--paper); padding:120px 0; }
  .studio-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; margin-top:20px;}
  @media (max-width:820px){ .studio-grid{grid-template-columns:1fr;} }
  .studio-card{
    background:white; border-radius:12px; box-shadow:var(--shadow-sm);
    padding:34px 30px;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .studio-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); }
  .studio-card .tag-icon{
    width:44px; height:44px; border-radius:10px; margin-bottom:20px;
    display:flex; align-items:center; justify-content:center; font-size:18px; color:white;
  }
  .studio-card.c1 .tag-icon{ background:var(--blue); }
  .studio-card.c2 .tag-icon{ background:var(--green); }
  .studio-card.c3 .tag-icon{ background:var(--ink); }
  .studio-card h4{font-family:'Space Grotesk'; font-size:20px; font-weight:700; margin-bottom:12px;}
  .studio-card p{font-size:14.5px; line-height:1.65; opacity:0.68;}

  /* ---------- FAQ ---------- */
  .faq{ background:var(--paper); padding:20px 0 120px; }
  .faq-grid{ display:grid; grid-template-columns:0.8fr 1.2fr; gap:56px; align-items:start; }
  @media (max-width:880px){ .faq-grid{grid-template-columns:1fr; gap:28px;} }

  .faq-side p{ font-size:15.5px; line-height:1.65; opacity:0.68; margin-top:14px; max-width:36ch; }
  .faq-list{ }
  .faq-item{
    background:white; border-radius:12px; box-shadow:var(--shadow-sm);
    margin-bottom:14px; overflow:hidden;
  }
  .faq-item summary{
    list-style:none; cursor:pointer; padding:22px 26px;
    font-family:'Space Grotesk'; font-weight:600; font-size:16.5px;
    display:flex; justify-content:space-between; align-items:center; gap:16px;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary .chev{
    flex-shrink:0; width:26px; height:26px; border-radius:50%;
    background:var(--blue-soft); color:var(--blue); display:flex; align-items:center; justify-content:center;
    font-size:14px; transition:transform .25s ease;
  }
  .faq-item[open] summary .chev{ transform:rotate(45deg); }
  .faq-item p{ padding:0 26px 24px; font-size:15px; line-height:1.7; opacity:0.7; max-width:65ch; }

  /* ---------- CTA ---------- */
  .cta-band{ padding:0 32px 0; }
  .cta-band .inner{
    max-width:var(--max); margin:0 auto; background:var(--green); color:white;
    border-radius:18px; padding:80px 64px; position:relative; overflow:hidden;
  }
  .cta-band .blob{ width:340px; height:340px; background:white; opacity:0.10; top:-120px; right:-80px; }
  .cta-band .content{ position:relative; z-index:1; max-width:720px; }
  .cta-band .eyebrow{ opacity:0.8; }
  .cta-band h2{ font-size:clamp(30px,4vw,48px); margin:16px 0 20px; color:white; }
  .cta-band p{ font-size:16.5px; opacity:0.88; line-height:1.65; margin-bottom:34px; max-width:56ch; }
  .cta-band .btn-primary{ background:white; color:var(--ink); }
  .cta-band .btn-primary:hover{ background:var(--paper); }

  /* ---------- CONTACT ---------- */
  .contact{background:var(--paper); padding:110px 0;}
  .contact-shell{
    display:grid; grid-template-columns:0.8fr 1.2fr; gap:0;
    background:white; border-radius:16px; box-shadow:var(--shadow-lg); overflow:hidden;
    margin-top:20px;
  }
  @media (max-width:860px){ .contact-shell{grid-template-columns:1fr;} }
  .contact-side{ background:var(--navy); color:white; padding:50px 42px; }
  .contact-side h3{font-size:26px; margin-bottom:14px; color:white;}
  .contact-side p{font-size:15.5px; opacity:0.68; line-height:1.6; margin-bottom:30px;}
  .contact-point{display:flex; align-items:center; gap:12px; margin-bottom:16px; font-size:14.5px; font-weight:600;}
  .contact-point .dot-sq{
    width:32px; height:32px; border-radius:8px; background:rgba(255,255,255,0.12); flex-shrink:0;
    display:flex; align-items:center; justify-content:center; color:white; font-size:14px;
  }
  .contact-form-side{ padding:50px 46px; }
  .field-row{display:grid; grid-template-columns:1fr 1fr; gap:16px;}
  @media (max-width:520px){ .field-row{grid-template-columns:1fr;} }
  .field{margin-bottom:18px;}
  .field label{
    display:block; font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase;
    letter-spacing:0.07em; opacity:0.5; margin-bottom:8px; font-weight:600;
  }
  .field input, .field textarea{
    width:100%; border:1.5px solid var(--line); background:var(--paper); border-radius:10px;
    padding:13px 16px; font-family:'Inter'; font-size:14.5px; color:var(--ink);
    transition:box-shadow .2s, border-color .2s;
  }
  .field input:focus, .field textarea:focus{
    outline:none; border-color:var(--blue); box-shadow:0 0 0 4px var(--blue-soft);
  }
  .field textarea{resize:vertical; min-height:110px;}
  .form-submit{
    background:var(--ink); color:white; border:none; cursor:pointer; border-radius:100px;
    padding:16px 30px; font-size:15px; font-weight:600; font-family:'Inter';
    box-shadow:var(--shadow-sm);
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .22s ease, box-shadow .22s ease, background .22s;
  }
  .form-submit:hover{ transform:translateY(-3px); box-shadow:var(--shadow-md); background:var(--blue); }
  .form-note{font-size:12.5px; opacity:0.5; margin-top:14px;}
  .form-success{
    display:none; align-items:center; gap:10px; margin-top:18px;
    font-size:14px; font-weight:700; color:var(--green);
  }
  .form-success.show{display:flex;}

  /* ---------- FOOTER ---------- */
  footer{ background:var(--navy); color:white; position:relative; overflow:hidden; }
  footer .blob{ width:380px; height:380px; background:var(--blue); opacity:0.10; bottom:-160px; left:-100px; }
  .footer-top{ padding:76px 0 50px; border-bottom:1px solid rgba(255,255,255,0.10); position:relative; z-index:1; }
  .footer-top h2{ color:white; font-size:clamp(28px,3.6vw,42px); max-width:14ch; margin-bottom:28px;}
  .footer-cols{ position:relative; z-index:1; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding:56px 0 40px; }

  .footer-col a{ display:block; font-size:14.5px; font-weight:500; opacity:0.82; margin-bottom:12px; transition:opacity .18s;}
  .footer-col a:hover{ opacity:1; text-decoration:underline; }
  .footer-logos-row{ display:flex; gap:16px; align-items:center; margin-top:18px; }
  .footer-logos-row img{ height:24px; width:auto; filter:brightness(0) invert(1); opacity:0.65; }
  .footer-bottom{
    position:relative; z-index:1;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    padding:26px 0; border-top:1px solid rgba(255,255,255,0.10);
  }
  .footer-bottom .fine{font-size:12.5px; opacity:0.45; font-family:'IBM Plex Mono';}

  ::selection{ background:var(--green-soft); color:var(--green); }

  /* scroll reveal */
  .reveal{transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.visible{ opacity:1; transform:translateY(0); }


    @media (max-width:760px){ .footer-cols{grid-template-columns:1fr;} }
  .footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:16px; }
  .footer-brand .brand-word{ font-size:24px; }
  .footer-brand .brand-word .a{ color:white; }
  .footer-brand .brand-word .b{ color:#5EC1F0; }
  .footer-cols > div > p{ font-size:14px; opacity:0.6; line-height:1.6; max-width:32ch; }
  .footer-col h5{
    font-family:'IBM Plex Mono'; font-size:11.5px; text-transform:uppercase; letter-spacing:0.07em;
    opacity:0.5; margin-bottom:16px; font-weight:600;
  }


  /* ---------- RESPONSIVE FIXES : Contact, WPForms & Footer ---------- */

/* 1. Contact Section & WPForms 50/50 colonnes */
@media (max-width: 860px) {
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .contact-side, 
  .contact-form-side {
    padding: 36px 24px;
  }
}


/* =========================================================
   CORRECTIONS MOBILITÉ EXTRÊME (Écrans < 768px)
   ========================================================= */

@media (max-width: 768px) {

	section#contact .wrap{
		padding:0;
	}

	.section-head{
		text-align: center;
	}
  
  /* 1. Correction du bloc bleu de contact coupé sur la droite */
  .contact-shell {
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border-radius: 0 !important; /* Enlève les arrondis pour coller aux bords sur mobile */
  }
  
  .contact-side {
    padding: 30px 16px !important; /* On réduit drastiquement les marges internes */
    box-sizing: border-box !important;
    width: 100% !important;
  }
  
  .contact-side p {
    max-width: 100% !important;
    word-wrap: break-word !important; /* Empêche les mots de dépasser */
  }

  /* 2. Correction du formulaire WPForms écrasé */
  .contact-form-side {
    padding: 30px 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  
  /* On force le conteneur des champs à s'afficher en bloc (les uns sous les autres) */
  .wpforms-form .wpforms-field-row,
  .wpforms-form .wpforms-field-row.wpforms-one-half {
    display: block !important; 
    width: 100% !important;
  }
  
  /* On force chaque champ à prendre 100% de la largeur */
  .wpforms-form .wpforms-field {
    width: 100% !important;
    float: none !important;
    margin-left: 0 !important;
    margin-bottom: 16px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* 3. Correction du footer collé au bord de l'écran */
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  
  /* S'assurer que le contenu du footer respire */
  .footer-top, 
  .footer-cols {
    padding-left: 0 !important; 
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}
