       /* Styles généraux */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background-color: #f8f9fa; }
        a { text-decoration: none; color: inherit; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

        /* Header & Logo */
        header { background: #fff; border-bottom: 1px solid #e9ecef; position: sticky; top: 0; z-index: 100; }
        .nav-container { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; max-width: 1100px; margin: 0 auto; }
        
        .logo-group { display: flex; align-items: center; gap: 12px; }
        
        /* Monogramme CSS (Logo MBM) */
        .brand-logo {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
        }

	.brand-logo img{
          border-radius: 8px;
         width: inherit;
	}

        .brand-text { display: flex; flex-direction: column; }
        
        .brand-top-line {
            display: flex;
            align-items: center;
            gap: 8px;
            line-height: 1.1;
        }

        .logo-name { 
            font-size: 1.3rem; 
            font-weight: 800; 
            color: #212529; 
            letter-spacing: 0.5px;
        }

        .badge-status { 
            background: #e7f1ff; 
            color: #0d6efd; 
            border: 1px solid #0d6efd; 
            font-size: 0.75rem; 
            padding: 2px 8px; 
            border-radius: 12px; 
            font-weight: 600; 
        }

        .logo-subtitle { 
            font-size: 0.8rem; 
            color: #6c757d; 
            font-weight: 500; 
            margin-top: 2px;
        }

        nav a { margin-left: 20px; color: #495057; font-weight: 500; }
        nav a:hover { color: #0d6efd; }

        /* Hero Section & Vidéo */
        .hero { text-align: center; padding: 60px 20px; background: #fff; margin-bottom: 40px; border-bottom: 1px solid #e9ecef; }
        .hero h1 { font-size: 2.5rem; margin-bottom: 15px; color: #212529; }
        .hero p { font-size: 1.2rem; color: #6c757d; max-width: 700px; margin: 0 auto 30px auto; }
        
        .video-container { 
            max-width: 720px; 
            margin: 0 auto; 
            border-radius: 12px; 
            overflow: hidden; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: #000;
        }
        .video-container video { width: 100%; display: block; }

        /* Titles */
        .section-title { text-align: center; margin-bottom: 40px; font-size: 2rem; color: #212529; }

        /* Section Certifications */
        .certifications-section { margin-bottom: 60px; }
        .cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
        .cert-card { 
            background: #fff; 
            padding: 25px; 
            border-radius: 10px; 
            border: 1px solid #e9ecef; 
            display: flex; 
            flex-direction: column; 
            justify-content: space-between;
            box-shadow: 0 4px 6px rgba(0,0,0,0.03);
            transition: transform 0.2s;
        }
        .cert-card:hover { transform: translateY(-3px); }
        
        .cert-card.adobe { border-left: 5px solid #ff0000; }
        .cert-card.mysql { border-left: 5px solid #00758f; }
        .cert-card.php { border-left: 5px solid #777bb4; }

        .cert-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
        .cert-issuer { font-size: 0.85rem; font-weight: bold; text-transform: uppercase; letter-spacing: 0.5px; }
        .adobe .cert-issuer { color: #eb1000; }
        .mysql .cert-issuer { color: #00758f; }
        .php .cert-issuer { color: #777bb4; }

        .cert-badge { background: #e8f5e9; color: #2e7d32; font-size: 0.75rem; padding: 2px 8px; border-radius: 10px; font-weight: 600; }
        .cert-title { font-size: 1.2rem; color: #212529; margin-bottom: 10px; font-weight: 700; }
        .cert-desc { font-size: 0.9rem; color: #6c757d; }

        /* Section Philosophie / Clés de Réussite */
        .values-section {
            background: #fff;
            padding: 35px;
            border-radius: 12px;
            border: 1px solid #e9ecef;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            margin-bottom: 60px;
        }
        .values-text {
            font-size: 1.05rem;
            color: #495057;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }
        .value-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #0d6efd;
            font-size: 0.95rem;
            color: #212529;
        }
        .value-item strong {
            display: block;
            color: #0d6efd;
            margin-bottom: 3px;
        }

        /* Section Missions */
        .missions-section { margin-bottom: 60px; }
        .missions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
        .mission-card {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #e9ecef;
            box-shadow: 0 4px 6px rgba(0,0,0,0.02);
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .mission-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        }
        .mission-client {
            font-size: 1.25rem;
            color: #212529;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .mission-tag {
            display: inline-block;
            background: #f1f3f5;
            color: #495057;
            font-size: 0.8rem;
            padding: 3px 10px;
            border-radius: 4px;
            margin-bottom: 12px;
            font-weight: 600;
        }
        .mission-desc {
            font-size: 0.92rem;
            color: #6c757d;
        }

        /* Services Section */
        .services-section { margin-bottom: 60px; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .service-card { background: #fff; padding: 25px; border-radius: 8px; border: 1px solid #e9ecef; transition: transform 0.2s, box-shadow 0.2s; }
        .service-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
        .service-card h3 { color: #0d6efd; margin-bottom: 10px; font-size: 1.25rem; }
        .service-card p { color: #6c757d; font-size: 0.95rem; }

        /* Section Auto-Entrepreneur / Informations Légales */
        .status-section { background: #fff; padding: 30px; border-radius: 8px; border: 1px solid #e9ecef; margin-bottom: 60px; }
        .status-section h2 { color: #212529; font-size: 1.5rem; margin-bottom: 15px; border-bottom: 2px solid #0d6efd; display: inline-block; padding-bottom: 5px; }
        .status-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 15px; }
        .status-item { font-size: 0.95rem; }
        .status-item strong { color: #495057; display: block; margin-bottom: 3px; }

        /* Footer */
        footer { background: #212529; color: #fff; text-align: center; padding: 30px 20px; margin-top: 40px; }
        footer p { margin-bottom: 8px; font-size: 0.9rem; color: #adb5bd; }
        footer .legal-note { font-size: 0.8rem; color: #868e96; margin-top: 10px; }
/* =========================================
   ANALGO - FOUNDER & CEO
   ========================================= */

.analgo-section {
    width: 71%;
    margin: 35px auto;
}

.analgo-card {
  position: relative;
  overflow: hidden;
  padding: 45px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f8fafc 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

/* Header */

.analgo-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.analgo-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.analgo-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.analgo-label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.55;
}

.analgo-role h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

/* Content */

.analgo-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 60px;
}

.analgo-info h3 {
  margin: 0 0 8px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 800;
}

.analgo-tagline {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.65;
}

.analgo-info > p:not(.analgo-tagline) {
  max-width: 650px;
  margin: 0 0 25px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.75;
}

/* Features */

.analgo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.analgo-features span {
  padding: 8px 14px;
  border-radius: 50px;
  background: #f1f5f9;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 600;
}

/* Button */

.analgo-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 10px;
  background: #111827;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.analgo-button span {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.analgo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.analgo-button:hover span {
  transform: translateX(4px);
}

/* Visual */

.analgo-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
}

.analgo-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(40px);
}

.analgo-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1;
}

.analgo-brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.analgo-brand span {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -1px;
}

.analgo-brand span span {
  font-weight: 400;
  opacity: 0.55;
}

.analgo-description {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: 0.55;
}

/* Responsive */

@media (max-width: 768px) {

  .analgo-section {
    margin: 50px 0;
  }

  .analgo-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .analgo-header {
    margin-bottom: 30px;
  }

  .analgo-role h2 {
    font-size: 23px;
  }

  .analgo-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .analgo-info h3 {
    font-size: 34px;
  }

  .analgo-visual {
    min-height: 230px;
  }
.analgo-stack-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  opacity: 0.55;
}

.analgo-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.analgo-stack span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  color: #1f2937;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.25s ease;
}

.analgo-stack span:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}