/* ============================================================
       VARIABLES GLOBALES — PALETTE MADITECH
       ============================================================ */
    :root {
      --vert:        #008000;
      --vert-clair:  #2da62d;
      --vert-fonce:  #005a00;
      --orange:      #ff9800;
      --orange-clair:#ffb74d;
      --orange-fonce:#e65100;
      --bleu:        #014d75;
      --bleu-clair:  #0277bd;
      --gris:        #757575;
      --gris-clair:  #e0e0e0;
      --gris-fonce:  #424242;
      --blanc:       #ffffff;
      --fond-sombre: #0a0f0a;
      --fond-card:   #0f1a0f;
      --fond-section:#0d150d;

      --titre:   'Barlow', sans-serif;
      --corps:   'Libre Franklin', sans-serif;

      --rayon:   25px;
      --rayon-lg:18px;
      --ombre:   0 4px 24px rgba(0,0,0,0.35);
      --transition: 0.3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

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

    html {
        scroll-behavior: smooth;
        font-size: 16px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }

    body {
	font-family: var(--corps);
	font-weight: 400;
	background: var(--fond-sombre);
	color: var(--blanc);
	overflow-x: hidden;
	line-height: 1.7;
	text-shadow:0 1px 0 #000;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    body:has(.mdtc-center-toast.show) {
        filter: blur(1px);
        transition: filter 0.3s ease;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ============================================================
       UTILITAIRES
       ============================================================ */
    .container {
        width: 92%;
        max-width: 1240px;
        margin: 0 auto;
    }
    
    .container .hight-light{
        width: 100%;
        color:rgba(255,255,255,0.45);
        font-size: 16px;
        text-align: center;
        margin-bottom:50px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--titre);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 14px;
    }

    .section-label::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--titre);
      font-size: clamp(1.9rem, 3.5vw, 2.9rem);
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }

    .section-sub {
      color: rgba(255,255,255,0.5);
      font-size: 0.97rem;
      max-width: 580px;
      font-weight: 300;
    }

    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .section-header .section-sub {
      margin: 0 auto;
    }

    .section-header .section-label {
      justify-content: center;
    }

    .section-header .section-label::before {
      display: none;
    }

    .section-header .section-label::after {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--orange);
      border-radius: 15px;
    }

    .tag {
      display: inline-block;
      font-family: var(--titre);
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 4px;
    }

    .tag-b2b { background: rgba(1,77,117,0.3); color: #4fc3f7; border: 1px solid rgba(1,77,117,0.5); }
    .tag-b2c { background: rgba(255,152,0,0.15); color: var(--orange-clair); border: 1px solid rgba(255,152,0,0.3); }
    .tag-b2g { background: rgba(0,128,0,0.2); color: #81c784; border: 1px solid rgba(0,128,0,0.35); }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--vert);
      color: var(--blanc);
      font-family: var(--titre);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.04em;
      padding: 13px 28px;
      border-radius: var(--rayon);
      border: none;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .btn-primary:hover {
      background: var(--vert-clair);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,128,0,0.35);
    }

    .btn-orange {
      background: var(--orange);
      color: white;
    }

    .btn-orange:hover {
      background: var(--orange-clair);
      box-shadow: 0 8px 28px rgba(255,152,0,0.35);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--blanc);
      font-family: var(--titre);
      font-weight: 600;
      font-size: 0.9rem;
      padding: 12px 26px;
      border-radius: var(--rayon);
      border: 1.5px solid rgba(255,255,255,0.25);
      cursor: pointer;
      transition: border-color var(--transition), background var(--transition);
    }

    .btn-outline:hover {
      border-color: var(--orange);
      background: rgba(255,152,0,0.07);
      color: var(--orange);
    }

    /* Séparateur horizontal */
    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,152,0,0.2), rgba(0,128,0,0.2), transparent);
    }

    /* Révélation au scroll */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-d1 { transition-delay: 0.1s; }
    .reveal-d2 { transition-delay: 0.2s; }
    .reveal-d3 { transition-delay: 0.3s; }
    .reveal-d4 { transition-delay: 0.4s; }

    /* ============================================================
       CURSEUR CUSTOM (masqué sur mobile)
       ============================================================ */
    .cursor, .cursor-ring {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      border-radius: 50%;
    }

    .cursor {
      width: 9px;
      height: 9px;
      background: var(--orange);
      mix-blend-mode: difference;
    }

    .cursor-ring {
      width: 34px;
      height: 34px;
      border: 1.5px solid rgba(255,152,0,0.6);
      transition: transform 0.15s ease;
    }

    @media (max-width: 768px) {
      .cursor, .cursor-ring { display: none; }
    }

    /* ============================================================
       NAVBAR
       ============================================================ */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      padding: 18px 0;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }

    nav.scrolled {
	backdrop-filter: blur(14px);
	padding: 12px 0;
	text-shadow:0 1px 0 #000;
	border-bottom: #ff9800 1px inset;
	background: #2da62d;
	color:white;
	box-shadow: 0 2px 2px rgba(0,0,0,0.50);		
    }
		
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      /*background: linear-gradient(135deg, var(--vert), var(--vert-fonce));*/
	  background:white;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--titre);
      font-weight: 900;
      font-size: 20px;
      color: var(--blanc);
      border: 1.5px solid rgba(0,128,0,0.5);
    }

    .logo-text {
		font-family: var(--titre);
		font-weight: 800;
		font-size: 1.2rem;
		line-height: 1.2;
		text-transform:uppercase;
    }

    .logo-text span {
      color: var(--orange);
    }

    .logo-sub {
      font-size: 0.65rem;
      font-weight: 400;
      color: rgba(255,255,255,0.4);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* Liens nav */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);	  
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: all .3s ease-in-out;
      white-space: nowrap;
    }
	
	.nav-links a,
	.logo-text,
	.logo-sub {
	  transition: color 0.3s ease;
	}
	
	nav.scrolled .nav-links a {
	  color: white;
	}

	nav.scrolled .logo-text,
	nav.scrolled .logo-sub {
	  color: white;
	}

    .nav-links a:hover {
      color: var(--orange);
    }

    .nav-cta {
		background: var(--orange);
		color: #fff !important;
		padding: 9px 20px !important;
		border-radius:20px;
		font-weight: 700 !important;
		font-family: var(--titre);
		transition: all .3s ease-in-out;
    }

    .nav-cta:hover {
		background: var(--vert-fonce) !important;
		transform: translateY(-1px);		
		width: 98%;		
		box-shadow: 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 0 2px rgba(255, 255, 255, 0.3) inset, 0 2px 0 rgba(23, 51, 78, 0.03), 0 0 3px rgba(0, 57, 102, 0.3);
    }
	
    nav.scrolled .nav-links a:not(.nav-cta) {
        color: white;
    }

    /* Burger */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .burger span {
      width: 26px;
      height: 2px;
      background: var(--blanc);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Menu mobile */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(10,15,10,0.98);
      backdrop-filter: blur(20px);
      z-index: 800;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
	  transform: scale(0.98);
    transition: all 0.3s ease;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: var(--titre);
      font-size: 1.6rem;
      font-weight: 800;
      color: rgba(255,255,255,0.8);
      transition: color var(--transition);
    }

    .mobile-menu a:hover {
      color: var(--orange);
    }

    .mobile-close {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 2rem;
        cursor: pointer;
        color: #fff;
	text-shadow:0 1px 0 #000;
	transform: scale(0.98);
        transition: all 0.3s ease;
	width: 50px;
	height: 50px;
	text-align: center;
	background:#0277bd;
	border-radius: 50%;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.60) inset, 0 2px 1px rgba(42, 26, 8, 0.99);
	border:#efefef 1px dashed;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
      }

      .stat-card {
        background: rgba(255,255,255,0.03);
        border-radius: 16px;
        padding: 25px 20px;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,128,0,0.15);
      }

      .stat-value {
        font-size: 32px;
        font-weight: bold;
        color: #00c853;
        margin-bottom: 8px;
      }

      .stat-label {
        font-size: 14px;
        opacity: 0.8;
      }
    
    .stat-value {
        font-size: 32px;
        font-weight: bold;
        color: #00c853;
        margin-bottom: 8px;
        transition: text-shadow 0.3s ease;
      }

      /* état glow actif */
      .stat-value.glow {
        text-shadow:
          0 0 6px rgba(0,200,83,0.6),
          0 0 12px rgba(0,200,83,0.5),
          0 0 20px rgba(0,200,83,0.4);
      }
    
    .stat-card {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }

      /* état visible */
      .stat-card.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* petit bonus premium */
      .stat-card:hover {
        transform: translateY(-6px) scale(1.02);
      }
    /* ============================================================
       HERO
       ============================================================ */
    #home {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .mdtc-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(0,128,0,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 70%, rgba(255,152,0,0.07) 0%, transparent 50%);
      pointer-events: none;
    }

    .mdtc-grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,128,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,128,0,0.04) 1px, transparent 1px);
      background-size: 55px 55px;
      pointer-events: none;
    }

    .mdtc-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
	
    .mdtc-mascotte {	  
        position: absolute;	  
        transform: translate(-25%, -25%);
        z-index: 2;
        cursor: pointer;
    }

    .mdtc-mascotte img {
        width: 220px;
        height: auto;
        object-fit: contain;
        filter: drop-shadow(0 8px 32px rgba(0,128,0,0.25));
        animation: floatMascotte 4s ease-in-out infinite;
        transition: transform 0.35s ease;
        cursor: pointer;
    }

    .mdtc-mascotte.zoomed img {
      transform: scale(1.25);
    }

    /* état agrandi */
    .mdtc-mascotte.active img {
        width: 270px;
        transform: scale(1.08);
    }
        
    .mdtc-mascotte:hover {
        transform: translate(-25%, -25%) scale(1.05);
        transition: transform 0.3s ease;
    }
    
    .mdtc-mascotte img {
        transition: transform 0.35s ease;
        cursor: pointer;
      }

      .mdtc-mascotte.zoomed img {
        transform: scale(1.25); /* 220 → ~270px effet visuel */
      }

      /* MODAL NOTIFICATION */
      .mdtc-ai-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.35s ease;
        z-index: 999999;
      }

      .mdtc-ai-modal.show {
        opacity: 1;
        pointer-events: all;
      }

      .mdtc-ai-box {
        background: rgba(0,0,0,0.85);
        color: #fff;
        padding: 18px 22px;
        border-radius: 14px;
        max-width: 320px;
        text-align: center;
        transform: translateY(10px);
        transition: transform 0.35s ease;
        border:#E69E31 2px inset;
      }

      .mdtc-ai-modal.show .mdtc-ai-box {
        transform: translateY(0);
      }

    @keyframes floatMascotte {
        0%, 100% { transform: translateY(0px); }
        50%      { transform: translateY(-12px); }
    }
	
    .mdtc-pill {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(0,128,0,0.12);
        border: 1px solid rgba(0,128,0,0.3);
        border-radius: 50px;
        padding: 6px 16px 6px 10px;
        margin-bottom: 28px;
        position: absolute;
        left:55vh;
        top: 3vh;
    }

    .mdtc-pill-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--vert-clair);
        animation: pulseDot 2s infinite;
    }

    @keyframes pulseDot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.8); }
    }

    .mdtc-pill span {
      font-size: 0.75rem;
      font-weight: 600;
      color: #81c784;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .mdtc-title {
      font-family: var(--titre);
      font-size: clamp(3rem, 5.5vw, 5.8rem);
      font-weight: 900;
      line-height: 1.0;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }

    .mdtc-title .t-vert  { color: var(--vert-clair); }
    .mdtc-title .t-orange{ color: var(--orange); }
    .mdtc-title .t-muted { 
	font-size: 0.25em;
	font-weight: 100;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.05em;
	display: block;
	margin-top: 6px;
	font-family: var(--corps);
	text-transform: uppercase;
	padding: 20px;
    }

    .mdtc-title .t-muted {
        margin-left: -20px;
    }
    
    .mdtc-desc {
      font-size: 1.02rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.58);
      font-weight: 300;
      max-width: 500px;
    }

    .mdtc-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }

    .mdtc-stats {
      display: flex;
      gap: 36px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255,255,255,0.07);
      flex-wrap: wrap;
	  display:none;
    }

    .stat-num {
      font-family: var(--titre);
      font-size: 2rem;
      font-weight: 900;
      color: var(--orange);
    }

    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-top: 2px;
    }

    /* Hero Right — Visuel */
    .mdtc-visual {
      position: relative;
      height: 540px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mdtc-central {
      width: 110px;
      height: 110px;
      background: linear-gradient(135deg, rgba(0,128,0,0.2), rgba(0,128,0,0.05));
      border: 1.5px solid rgba(0,128,0,0.4);
      border-radius: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      position: relative;
      z-index: 2;
	  overflow:hidden;
    }
	
    .mdtc-central img{
		filter: brightness(0) invert(1);
		width: 90px;
		vertical-align: middle;
		height: auto !important;
    }

    .mdtc-central-letter {
      font-family: var(--titre);
      font-size: 2.4rem;
      font-weight: 900;
      color: var(--vert-clair);
    }

    .mdtc-central-sub {
      font-size: 0.6rem;
      color: rgba(0,128,0,0.7);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .float-card {
      position: absolute;
      background: rgba(15,26,15,0.85);
      border: 1px solid rgba(255,152,0,0.2);
      border-radius: 12px;
      padding: 14px 18px;
      backdrop-filter: blur(8px);
    }

    .float-card.fc-1 { top: 8%;  right: 4%;  animation: floatUp 4s ease-in-out infinite; }
    .float-card.fc-2 { bottom:10%; left: 0%;  animation: floatUp 5s ease-in-out infinite 0.8s; z-index:2 }
    .float-card.fc-3 { top: 42%; right: 0%;  animation: floatUp 3.6s ease-in-out infinite 0.4s; }

    @keyframes floatUp {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    .fc-label {
      font-size: 0.7rem;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .fc-value {
      font-family: var(--titre);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--blanc);
    }

    .fc-desc {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.45);
      margin-top: 3px;
    }

    .fc-badge {
      display: inline-block;
      margin-top: 7px;
      background: rgba(0,128,0,0.2);
      border: 1px solid rgba(0,128,0,0.4);
      border-radius: 4px;
      font-size: 0.68rem;
      color: #81c784;
      padding: 2px 8px;
    }

    /* Africa Map SVG décorative */
    .africa-deco {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.08;
      pointer-events: none;
    }

    .africa-deco svg,
	.africa-deco img{
		width: 580px;
		fill: var(--vert);
    }

    /* ============================================================
       TICKER DÉFILANT
       ============================================================ */
    .ticker-wrap {
      overflow: hidden;
      background: rgba(255,152,0,0.06);
      border-top: 1px solid rgba(255,152,0,0.15);
      border-bottom: 1px solid rgba(255,152,0,0.15);
      padding: 12px 0;
    }

    .ticker-track {
      display: flex;
      gap: 48px;
      width: max-content;
      animation: tickerMove 35s linear infinite;
    }

    @keyframes tickerMove {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .ticker-item {
      font-size: 0.76rem;
      font-weight: 600;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ticker-item::after {
      content: '◆';
      color: var(--orange);
      font-size: 0.5rem;
    }

    /* ============================================================
       ABOUT
       ============================================================ */
    #about {
      padding: 96px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-body {
      font-size: 0.97rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.58);
      font-weight: 300;
      margin-top: 12px;
    }

    .about-body + .about-body {
      margin-top: 14px;
    }

    .about-highlight {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,128,0,0.1);
      border-left: 3px solid var(--vert);
      padding: 14px 18px;
      border-radius: 0 8px 8px 0;
      margin-top: 24px;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.75);
      font-style: italic;
    }

    .pillar-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .pillar-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: var(--rayon);
      padding: 20px 22px;
      transition: border-color var(--transition), background var(--transition);
    }

    .pillar-card:hover {
      border-color: rgba(255,152,0,0.3);
      background: rgba(255,152,0,0.04);
    }

    .pillar-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .pi-b2b { background: rgba(1,77,117,0.25); }
    .pi-b2c { background: rgba(255,152,0,0.15); }
    .pi-b2g { background: rgba(0,128,0,0.2); }

    .pillar-title {
      font-family: var(--titre);
      font-weight: 700;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    .pillar-desc {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.65;
    }

    /* ============================================================
       WEBSTORE — SECTION MARKETPLACE
       ============================================================ */
    #webstore {
      padding: 80px 0;
      background: var(--fond-section);
      position: relative;
      overflow: hidden;
    }

    #webstore::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -150px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,152,0,0.06) 0%, transparent 65%);
      pointer-events: none;
    }

    .webstore-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .webstore-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,152,0,0.1);
      border: 1px solid rgba(255,152,0,0.25);
      border-radius: 50px;
      padding: 5px 14px;
      margin-bottom: 20px;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--orange);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .webstore-title {
      font-family: var(--titre);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .webstore-title span { color: var(--orange); }

    .webstore-desc {
      font-size: 0.97rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 14px;
    }

    .webstore-compare {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 24px 0 32px;
      flex-wrap: wrap;
    }

    .ws-equiv {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 6px 14px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.55);
    }

    .ws-equiv strong {
      color: var(--orange);
      font-weight: 700;
    }

    /* Visuel Webstore */
    .webstore-visual {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,152,0,0.15);
      border-radius: var(--rayon-lg);
      padding: 28px;
      position: relative;
    }

    .ws-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .ws-logo {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--orange), var(--orange-fonce));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--titre);
      font-weight: 900;
      font-size: 14px;
      color: var(--blanc);
	  overflow:hidden;
    }
	
	.ws-logo img {
	  filter: brightness(0) invert(1);
	  width: 50px;
	  vertical-align: middle;
	  height: auto !important;
	}

    .ws-title-block {
      flex: 1;
    }

    .ws-name {
      font-family: var(--titre);
      font-weight: 800;
      font-size: 1rem;
    }

    .ws-sub {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
    }

    .ws-search {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      padding: 7px 14px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.35);
      width: 100%;
      margin-bottom: 20px;
    }

    .ws-apps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .ws-app {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 10px;
      padding: 14px 10px;
      text-align: center;
      transition: border-color var(--transition);
    }

    .ws-app:hover {
      border-color: rgba(255,152,0,0.3);
    }

    .ws-app-icon {
      font-size: 1.6rem;
      margin-bottom: 7px;
    }

    .ws-app-name {
      font-family: var(--titre);
      font-weight: 700;
      font-size: 0.72rem;
      color: rgba(255,255,255,0.8);
    }

    .ws-app-cat {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.35);
      margin-top: 2px;
    }

    .ws-app-btn {
      margin-top: 8px;
      display: inline-block;
      background: var(--vert);
      color: var(--blanc);
      border-radius: 4px;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 3px 10px;
    }

    /* ============================================================
       FRAMEWORKS
       ============================================================ */
    #frameworks {
      padding: 96px 0;
      position: relative;
    }

    .fw-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      margin-bottom: 32px;
    }

    .fw-card {
      border-radius: var(--rayon-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform var(--transition);
    }

    .fw-card:hover {
      transform: translateY(-6px);
    }

    .fw-card.fw-client {
      background: linear-gradient(135deg, rgba(0,128,0,0.09), rgba(10,15,10,0));
      border: 1px solid rgba(0,128,0,0.22);
    }

    .fw-card.fw-server {
      background: linear-gradient(135deg, rgba(1,77,117,0.1), rgba(10,15,10,0));
      border: 1px solid rgba(1,77,117,0.3);
    }

    .fw-type-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      margin-bottom: 20px;
    }

    .fw-client .fw-type-badge { background: rgba(0,128,0,0.18); color: #81c784; }
    .fw-server .fw-type-badge { background: rgba(1,77,117,0.25); color: #4fc3f7; }

    .fw-name {
      font-family: var(--titre);
      font-size: 2.2rem;
      font-weight: 900;
      margin-bottom: 4px;
    }

    .fw-client .fw-name { color: #81c784; }
    .fw-server .fw-name { color: #4fc3f7; }

    .fw-tagline {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.4);
      font-style: italic;
      margin-bottom: 18px;
    }

    .fw-desc {
        font-size: 0.89rem;
        line-height: 1.8;
        color: rgba(255,255,255,0.58);
        font-weight: 300;
        margin-bottom: 5px;
    }
	
    .fw-desc b{
	color:#ff9800;
	font-weight:800;
    }

    .fw-features {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .fw-feat {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.84rem;
      color: rgba(255,255,255,0.65);
    }

    .fw-feat-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .fw-client .fw-feat-dot { background: #81c784; }
    .fw-server .fw-feat-dot { background: #4fc3f7; }

    .fw-equiv {
      margin-top: 22px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .fw-equiv-label {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.3);
      text-transform: uppercase;
      letter-spacing: 0.09em;
      margin-bottom: 9px;
    }

    .fw-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .fw-pill {
      font-size: 0.7rem;
      padding: 3px 9px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 4px;
      color: rgba(255,255,255,0.4);
    }

    .fw-corner-orb {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 130px;
      height: 130px;
      border-radius: 50%;
      opacity: 0.06;
    }

    .fw-client .fw-corner-orb { background: var(--vert); }
    .fw-server .fw-corner-orb { background: var(--bleu); }

    /* Bloc code */
    .code-block {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      overflow: hidden;
    }

    .code-topbar {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 18px;
      background: rgba(255,255,255,0.03);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .code-dots {
      display: flex;
      gap: 6px;
    }

    .code-dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
    }

    .cd-red   { background: #FF5F56; }
    .cd-yellow{ background: #FFBD2E; }
    .cd-green { background: #27C93F; }

    .code-filename {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.3);
      font-family: 'Courier New', monospace;
    }

    .code-body {
      padding: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    .code-col-title {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .code-col-title.ct-client { color: #81c784; }
    .code-col-title.ct-server { color: #4fc3f7; }

    pre {
      font-size: 0.79rem;
      line-height: 1.85;
      font-family: 'Courier New', monospace;
      white-space: pre;
      overflow-x: auto;
    }

    .kw  { color: #C792EA; }
    .fn  { color: #82AAFF; }
    .st  { color: #C3E88D; }
    .cm  { color: rgba(255,255,255,0.3); font-style: italic; }
    .op  { color: var(--orange); }
    .gr  { color: #81c784; }
    .bl  { color: #4fc3f7; }
    .nu  { color: #F78C6C; }

    /* ============================================================
       SOLUTIONS
       ============================================================ */
    
    
    #solutions,
    #whyMaditech,
    #chiffres{
      padding: 96px 0;
      background: var(--fond-section);
    }

    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .sol-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: border-color var(--transition), transform var(--transition);
      
    }

    .sol-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,152,0,0.3);
    }

    .sol-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 20% 20%, rgba(255,152,0,0.04), transparent 60%);
      opacity: 0;
      transition: opacity var(--transition);
    }

    .sol-card:hover::before {
      opacity: 1;
    }
    
    .sol-icon {
        width:100px;
        height:100px;
        border-radius: 10px;
        border:gray 2px inset;
        overflow: hidden;
        font-size: 2.2rem;
        margin-bottom: 14px;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .sol-icon img{
        object-fit: cover;
        width: 100%;
        filter: grayscale(100%);
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
    }
    
    .reveal:hover .sol-icon{
        border-radius: 50%;
        border:#2da62d 2px dashed;
        width:150px;
        height:150px;
    }
    
    .reveal:hover .sol-icon img{
        transform: scale(1) rotate(720deg);
	filter: grayscale(0%);
    }

    .sol-title {
      font-family: var(--titre);
      font-weight: 800;
      font-size: 1.15rem;
      margin: 10px 0 8px;
    }

    .sol-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
    }

    /* ============================================================
       CHIFFRES
       ============================================================ */
    #chiffres {
      padding: 80px 0;
      border-top: 1px solid rgba(255,255,255,0.05);
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .chiffres-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 40px;
        text-align: center;
    }

    .chiffre-num {
      font-family: var(--titre);
      font-size: 3rem;
      font-weight: 900;
      color: var(--orange);
      line-height: 1;
      margin-bottom: 8px;
    }

    .chiffre-label {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
	
    .mdtc-toast {
        position: fixed;
	bottom: 30px;
	right: 30px;
       
	background: #111;
	color: #fff;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 14px;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 9999;
	max-width: 300px;
        
    }

    .mdtc-toast.show {
        opacity: 1;
	transform: translateY(0);
    }

    .mdtc-toast.success {
        border-left: 4px solid #00c853;
    }

    .mdtc-toast.error {
        border-left: 4px solid #ff3d00;
    }
    
    .mdtc-center-toast {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        min-width: 280px;
        max-width: 420px;
        padding: 18px 22px;
        border-radius: 14px;
        background: rgba(10, 10, 10, 0.85);
        color: #fff;
        font-size: 14px;
        text-align: center;
        z-index: 999999;

        opacity: 0;
        pointer-events: none;
        border:#E69E31 2px inset;
        backdrop-filter: blur(8px);
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);

        transition: all 0.35s ease;
    }

    .mdtc-center-toast.show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .mdtc-center-toast.success {
        border: 1px solid rgba(0, 200, 120, 0.4);
    }

    .mdtc-center-toast.error {
        border: 1px solid rgba(255, 80, 80, 0.4);
    }

    /* ============================================================
       EQUIPE
       ============================================================ */
    #equipe {
      padding: 96px 0;
    }

    .equipe-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 12px;
    }

    .team-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      overflow: hidden;
      transition: border-color var(--transition), transform var(--transition);
    }

    .team-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0,128,0,0.3);
    }

    .team-photo {
      width: 100%;
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
	
    .team-photo:hover .team-avatar{
	width: 150px;
	height: 150px;
	border:#ff9800 2px inset;		
    }
	
    .team-photo:hover .team-avatar img{
	transform: scale(1) rotate(720deg);
	filter: grayscale(0%);
    }

    .team-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border:#2da62d 2px inset;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--titre);
	font-weight: 900;
	font-size: 2rem;
	color: var(--blanc);
	position: relative;
	z-index: 1;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	overflow:hidden;
    }
	
	.team-avatar:hover{
		width: 150px;
		height: 150px;
		border:#ff9800 2px inset;
	}
	
	.team-avatar img {
		object-fit: cover;
		width: 100%;
		filter: grayscale(100%);
	}
	
	.team-avatar:hover img{
		transform: scale(1) rotate(720deg);
		filter: grayscale(0%);
	}

    .av-1 { background: linear-gradient(135deg, var(--vert), var(--vert-fonce)); }
    .av-2 { background: linear-gradient(135deg, var(--bleu), var(--bleu-clair)); }
    .av-3 { background: linear-gradient(135deg, var(--orange-fonce), var(--orange)); }
    .av-4 { background: linear-gradient(135deg, #6a1b9a, #9c27b0); }

    .team-photo-bg {
      position: absolute;
      inset: 0;
      opacity: 0.06;
    }

    .av-1-bg { background: var(--vert); }
    .av-2-bg { background: var(--bleu); }
    .av-3-bg { background: var(--orange); }
    .av-4-bg { background: #9c27b0; }

    .team-info {
      padding: 18px 20px 20px;
    }
	
	.team-desc{
		font-size:13px;
	}

    .team-name {
      font-family: var(--titre);
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 3px;
    }

    .team-role {
      font-size: 0.78rem;
      color: var(--orange);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 10px;
    }

    .team-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
    }

    .team-skill {
      font-size: 0.68rem;
      padding: 2px 8px;
      background: rgba(0,128,0,0.12);
      border: 1px solid rgba(0,128,0,0.25);
      border-radius: 4px;
      color: #81c784;
    }

    /* ============================================================
       IMPLANTATION
       ============================================================ */
    #implantation {
      padding: 96px 0;
      background: var(--fond-section);
    }

    .implantation-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 12px;
    }

    .region-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      overflow: hidden;
      transition: border-color var(--transition);
    }

    .region-card:hover {
      border-color: rgba(0,128,0,0.3);
    }

    .region-header {
      padding: 20px 22px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .region-flag {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .region-name {
      font-family: var(--titre);
      font-weight: 800;
      font-size: 1.1rem;
      margin-bottom: 4px;
    }

    .region-count {
      font-size: 0.75rem;
      color: var(--orange);
      font-weight: 600;
    }

    .region-cities {
      padding: 16px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .city-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .city-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      margin-top: 5px;
      flex-shrink: 0;
    }

    .dot-siege { background: var(--orange); }
    .dot-filiale{ background: var(--vert-clair); }
    .dot-partner{ background: var(--bleu-clair); }

    .city-name {
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 1px;
    }

    .city-detail {
      font-size: 0.76rem;
      color: rgba(255,255,255,0.4);
    }

    .city-contact {
      font-size: 0.73rem;
      color: var(--orange);
      margin-top: 2px;
    }

    .region-legend {
      display: flex;
      gap: 16px;
      padding: 12px 22px;
      background: rgba(255,255,255,0.02);
      border-top: 1px solid rgba(255,255,255,0.05);
      flex-wrap: wrap;
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.68rem;
      color: rgba(255,255,255,0.4);
    }

    .legend-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
    }

    /* ============================================================
       TÉMOIGNAGES
       ============================================================ */
    #temoignages {
      padding: 96px 0;
    }

    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .testi-card {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      padding: 24px;
      transition: border-color var(--transition);
    }

    .testi-card:hover {
      border-color: rgba(0,128,0,0.25);
    }

    .testi-stars {
      color: var(--orange);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .testi-text {
      font-size: 0.88rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      font-weight: 300;
      font-style: italic;
      margin-bottom: 18px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .testi-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--vert-fonce), var(--vert));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--titre);
      font-weight: 900;
      font-size: 0.85rem;
      color: var(--blanc);
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 0.85rem;
      font-weight: 600;
    }

    .testi-role {
      font-size: 0.73rem;
      color: rgba(255,255,255,0.4);
    }

    /* ============================================================
       CONTACT
       ============================================================ */
    #contact {
      padding: 96px 0;
      background: var(--fond-section);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }

    .contact-info-title {
      font-family: var(--titre);
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 900;
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .contact-info-title span { color: var(--vert-clair); }

    .contact-desc {
      font-size: 0.95rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 32px;
    }

    /* Réseaux sociaux */
    .social-section {
      margin-bottom: 32px;
    }

    .social-label {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.4);
      margin-bottom: 14px;
    }

    .social-links {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .social-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 16px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      font-size: 0.82rem;
      font-weight: 500;
      color: rgba(255,255,255,0.65);
      cursor: pointer;
      transition: border-color var(--transition), background var(--transition), color var(--transition);
      text-decoration: none;
    }

    .social-btn:hover {
      border-color: rgba(255,152,0,0.4);
      background: rgba(255,152,0,0.06);
      color: var(--orange);
    }

    .social-icon {
      width: 16px;
      height: 16px;
      border-radius: 3px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    /* Newsletter */
    .newsletter-box {
      background: rgba(0,128,0,0.07);
      border: 1px solid rgba(0,128,0,0.2);
      border-radius: var(--rayon);
      padding: 20px;
    }

    .newsletter-title {
      font-family: var(--titre);
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 6px;
    }

    .newsletter-sub {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 14px;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 7px;
      padding: 10px 14px;
      font-size: 0.85rem;
      color: var(--blanc);
      font-family: var(--corps);
      outline: none;
      transition: border-color var(--transition);
    }

    .newsletter-input::placeholder { color: rgba(255,255,255,0.3); }

    .newsletter-input:focus {
      border-color: var(--vert);
    }

    /* Formulaire de contact */
    .contact-form {
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: var(--rayon-lg);
      padding: 32px;
    }

    .form-title {
      font-family: var(--titre);
      font-weight: 800;
      font-size: 1.2rem;
      margin-bottom: 24px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .form-label {
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .form-input,
    .form-select,
    .form-textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 0.88rem;
      color: var(--blanc);
      font-family: var(--corps);
      outline: none;
      transition: border-color var(--transition);
      width: 100%;
    }

    .form-input::placeholder,
    .form-textarea::placeholder { color: rgba(255,255,255,0.25); }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--vert);
    }

    .form-select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
    }

    .form-select option {
      background: #0f1a0f;
      color: var(--blanc);
    }

    .form-textarea {
      min-height: 110px;
      resize: vertical;
    }
	
	.mdtc-notify {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -60%);
		background: rgba(0,0,0,0.85);
		color: #fff;
		padding: 20px 30px;
		border-radius: 12px;
		z-index: 999999;
		opacity: 0;
		pointer-events: none;
		transition: all .3s ease;
		text-align: center;
		min-width: 220px;
	}

	.mdtc-notify.show {
	  opacity: 1;
	  transform: translate(-50%, -50%);
	}

	.mdtc-notify-icon {
	  font-size: 28px;
	  margin-bottom: 10px;
	}

	.mdtc-notify.success {
	  border: 1px solid #2ecc71;
	}

	.mdtc-notify.error {
	  border: 1px solid #e74c3c;
	}

    /* ============================================================
       CTA FINAL
       ============================================================ */
    #cta-final {
      padding: 100px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(0,128,0,0.08) 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-title {
      font-family: var(--titre);
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 18px;
    }

    .cta-title span { color: var(--orange); }

    .cta-sub {
      font-size: 1rem;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
      max-width: 500px;
      margin: 0 auto 36px;
      line-height: 1.75;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      background: rgba(255,255,255,0.015);
      border-top: 1px solid rgba(255,255,255,0.07);
      padding: 64px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
    }

    .footer-brand p {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.4);
      line-height: 1.75;
      max-width: 300px;
      margin-top: 14px;
      font-weight: 300;
    }

    .footer-col-title {
      font-family: var(--titre);
      font-size: 0.82rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.6);
      margin-bottom: 18px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.84rem;
      color: rgba(255,255,255,0.4);
      transition: color var(--transition);
    }

    .footer-links a:hover {
      color: var(--orange);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    .footer-africa {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.3);
    }

    /* ============================================================
       BOUTON SCROLL TOP/BOTTOM (fixe)
       ============================================================ */
    .scroll-btn {
      position: fixed;
      right: 24px;
      bottom: 32px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--vert);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 800;
      box-shadow: 0 4px 20px rgba(0,128,0,0.4);
      transition: background var(--transition), transform var(--transition);
      font-size: 1.2rem;
      color: var(--blanc);
    }

    .scroll-btn:hover {
      background: var(--vert-clair);
      transform: scale(1.08);
    }

    /* ============================================================
       RESPONSIVE — TABLETTE (max 900px)
       ============================================================ */
	
	@media (min-width: 1200px) {
		.mdtc-mascotte { 
			left:50%;
		}
	}
	
    @media (min-width: 768px) and (max-width: 1199px) {
		.mdtc-mascotte { 
			left:none;
			right:5%;
		}
		
		.mdtc-mascotte img {
			width:200px;
		}
    }
	
	@media (max-width: 767px){
		.mdtc-mascotte { 
			position: absolute;
			left:none;
			right: -5%;
			transform: translate(-25%, -50%);
			z-index: 2;
		}
		
		.africa-deco svg,
		.africa-deco img{
			width: 480px;
			fill: var(--vert);
		}
	}
	
	@media (max-width: 415px){
		.mdtc-mascotte { 
			position: absolute;
			left:none;
			right: -2%;
			transform: translate(-25%, 80%);
			z-index: 2;
		}
		
		.mdtc-mascotte img {
			width:150px;
		}
		
		.logo-text {
			font-family: var(--titre);
			font-weight: 800;
			font-size: 1.05rem;
			line-height: 1.2;
			text-transform: uppercase;
		}
		
		nav {
			text-shadow:0 1px 0 #000;
			border-bottom: rgba(255,255,255,0.58) 1px inset;
			background: #2da62d;
			box-shadow: 0 1px 2px rgba(0,0,0,0.5);
		}
		
		nav.scrolled {
			text-shadow:0 1px 0 #000;
			border-bottom: #ff9800 1px inset;
			background: #2da62d;
			box-shadow: 0 2px 2px rgba(0,0,0,0.50);
		}
		
		.logo-mark {
			width:60px;
			height:60px;
		}
		
		nav.scrolled + .mobile-menu{
			top:82px;
		}
		
		.logo-sub {
			color:white;		
		}
		
		.mobile-menu {
			position: fixed;
			top: 78px;
			right: 0;
			bottom: 0;
			background: rgba(10,15,10,0.98);
			backdrop-filter: blur(20px);
			z-index: 800;
			flex-direction: column;
			gap: 1px;
			width: 80%;
			border: rgba(255,255,255,0.35) 1px solid;
			align-items: none;
			justify-content: normal;
			left:unset;
			padding-top:3px;
			box-shadow: 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 0 2px rgba(255, 255, 255, 0.3) inset, 0 2px 0 rgba(23, 51, 78, 0.03), 0 0 3px rgba(0, 57, 102, 0.3);
		}
	
		.mobile-menu a {
			font-family: var(--titre);
			font-size: 0.8rem;		
			font-weight: 10;
			text-transform: uppercase;
			background-color: #E69E31;
			color: white;
			border: none;
			padding: 15px;
			border-radius: 5px;
			cursor: pointer;		
			text-shadow: 0px 1px 0 #000;
			transition: all .3s ease-in-out;
			width:98%;
			box-shadow: 0 2px 0 rgba(255, 255, 255, 0.3) inset, 0 0 0 2px rgba(255, 255, 255, 0.3) inset, 0 2px 0 rgba(23, 51, 78, 0.03), 0 0 3px rgba(0, 57, 102, 0.3);		
		}
		
		.mdtc-title .t-vert  { color: var(--vert-clair); }
		.mdtc-title .t-orange{ color: var(--orange); }
		.mdtc-title .t-muted { 
			font-size:11px; 
			font-weight: 400; 
			 
			color: rgba(255,255,255,0.35); 
			letter-spacing:2px;
			display:block;
			padding:15px;
			display: block; 
			margin-top: 6px; 
			font-family:'Libre Franklin', sans-serif;
			text-transform:uppercase;
		}
		
		.mdtc-desc {
		  font-size: 0.9rem;
		  line-height: 1.8;
		  color: rgba(255,255,255,0.58);
		  font-weight: 300;
		  max-width: 500px;
		  margin-bottom: 36px;
		}
	}
	
    @media (max-width: 900px) {

      .mdtc-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
	  
		
	  

      .mdtc-visual {
        height: 320px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .webstore-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .fw-grid {
        grid-template-columns: 1fr;
      }

      .code-body {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }

      .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .implantation-grid {
        grid-template-columns: 1fr;
      }

      .testi-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    /* ============================================================
       RESPONSIVE — MOBILE (max 600px)
       ============================================================ */
    @media (max-width: 600px) {

      .nav-links {
        display: none;
      }

      .nav-cta {
        display: none;
      }

      .burger {
        display: flex;
      }

      .mdtc-stats {
        gap: 20px;
      }

      .mdtc-visual {
        display: none;
      }

      .solutions-grid {
        grid-template-columns: 1fr;
      }

      .chiffres-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .equipe-grid {
        grid-template-columns: 1fr;
      }

      .ws-apps {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .scroll-btn {
        right: 16px;
        bottom: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }

      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .cta-actions a {
        justify-content: center;
      }
    }