       /* 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: 809px; 
            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);
}

 /* Bouton flottant */
    .chat-toggle {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 62px;
        height: 62px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
        z-index: 9999;
        transition: 0.3s;
    }

    .chat-toggle:hover {
        transform: scale(1.08);
    }

    .chat-icon {
        font-size: 26px;
    }

    .chat-close {
        display: none;
        font-size: 28px;
    }

    .chat-toggle.active .chat-icon {
        display: none;
    }

    .chat-toggle.active .chat-close {
        display: inline;
    }

    /* Fenêtre */
    .chat-window {
        position: fixed;
        bottom: 100px;
        right: 25px;
        width: 380px;
        height: 550px;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        z-index: 9998;

        opacity: 0;
        transform: translateY(20px) scale(0.95);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .chat-window.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* Header */
    .chat-header {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .chat-avatar {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .chat-header-info {
        flex: 1;
    }

    .chat-header-info h3 {
        margin: 0;
        font-size: 16px;
    }

    .chat-header-info span {
        font-size: 12px;
        opacity: 0.9;
    }

    .chat-header-info i {
        display: inline-block;
        width: 7px;
        height: 7px;
        background: #4ade80;
        border-radius: 50%;
        margin-right: 4px;
    }

    #chat-minimize {
        background: none;
        border: none;
        color: white;
        font-size: 25px;
        cursor: pointer;
    }

    /* Messages */
    .chat-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8fafc;
    }

    .message {
        display: flex;
        gap: 10px;
        margin-bottom: 18px;
    }

    .message-avatar {
        width: 32px;
        height: 32px;
        background: #ede9fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .message-content {
        max-width: 80%;
    }

    .message-name {
        font-size: 11px;
        color: #94a3b8;
        display: block;
        margin-bottom: 5px;
    }

    .message p {
        margin: 0;
        padding: 12px 15px;
        background: white;
        border-radius: 4px 16px 16px 16px;
        color: #334155;
        font-size: 14px;
        line-height: 1.5;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .user-message {
        justify-content: flex-end;
    }

    .user-message .message-content {
        max-width: 80%;
    }

    .user-message p {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        border-radius: 16px 4px 16px 16px;
    }

    /* Suggestions */
    .chat-suggestions {
        padding: 10px 15px;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        background: #f8fafc;
    }

    .chat-suggestions button {
        white-space: nowrap;
        border: 1px solid #e2e8f0;
        background: white;
        border-radius: 20px;
        padding: 8px 12px;
        font-size: 12px;
        cursor: pointer;
        color: #475569;
    }

    /* Input */
    .chat-input-area {
        display: flex;
        gap: 10px;
        padding: 15px;
        border-top: 1px solid #f1f5f9;
        background: white;
    }

    .chat-input-area input {
        flex: 1;
        border: none;
        outline: none;
        background: #f1f5f9;
        padding: 12px 15px;
        border-radius: 25px;
        font-size: 14px;
    }

    #chat-send {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        cursor: pointer;
        font-size: 18px;
    }

    .chat-footer {
        text-align: center;
        font-size: 10px;
        color: #94a3b8;
        padding: 8px;
        background: white;
    }

    /* Mobile */
    @media (max-width: 500px) {
        .chat-window {
            right: 10px;
            left: 10px;
            bottom: 90px;
            width: auto;
            height: 70vh;
        }

        .chat-toggle {
            right: 18px;
            bottom: 18px;
        }
    }
body {
       font-family: 'Poppins', sans-serif;
     }
     .project-cta-simple {
      font-family: 'Poppins', sans-serif;
     }
    .project-cta-simple h2 {
       font-weight: 600;
     }
    .project-cta-label {
       font-weight: 700;
     }
    .project-cta-link {
      font-weight: 600;
     }
     .brand-name {
       font-family: 'Poppins', sans-serif;
       font-weight: 700;
       letter-spacing: -0.5px;
     }
    /* Bouton flottant */
    .chat-toggle {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 62px;
        height: 62px;
        border: none;
        border-radius: 50%;
        background: #0d6efd;
        color: white;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.35);
        z-index: 9999;
        transition: 0.3s;
    }

    .chat-toggle:hover {
        transform: scale(1.08);
    }

    .chat-icon {
        font-size: 26px;
    }

    .chat-close {
        display: none;
        font-size: 28px;
    }

    .chat-toggle.active .chat-icon {
        display: none;
    }

    .chat-toggle.active .chat-close {
        display: inline;
    }

    /* Fenêtre */
    .chat-window {
        position: fixed;
        bottom: 100px;
        right: 25px;
        width: 380px;
        height: 550px;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        z-index: 9998;

        opacity: 0;
        transform: translateY(20px) scale(0.95);
        pointer-events: none;
        transition: 0.3s ease;
    }

    .chat-window.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* Header */
    .chat-header {
        background: #0d6efd;
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .chat-avatar {
        width: 45px;
        height: 45px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .chat-header-info {
        flex: 1;
    }

    .chat-header-info h3 {
        margin: 0;
        font-size: 16px;
    }

    .chat-header-info span {
        font-size: 12px;
        opacity: 0.9;
    }

    .chat-header-info i {
        display: inline-block;
        width: 7px;
        height: 7px;
        background: #4ade80;
        border-radius: 50%;
        margin-right: 4px;
    }

    #chat-minimize {
        background: none;
        border: none;
        color: white;
        font-size: 25px;
        cursor: pointer;
    }

    /* Messages */
    .chat-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8fafc;
    }

    .message {
        display: flex;
        gap: 10px;
        margin-bottom: 18px;
    }

    .message-avatar {
        width: 32px;
        height: 32px;
        background: #ede9fe;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
    }

    .message-content {
        max-width: 80%;
    }

    .message-name {
        font-size: 11px;
        color: #94a3b8;
        display: block;
        margin-bottom: 5px;
    }

    .message p {
        margin: 0;
        padding: 12px 15px;
        background: white;
        border-radius: 4px 16px 16px 16px;
        color: #334155;
        font-size: 14px;
        line-height: 1.5;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .user-message {
        justify-content: flex-end;
    }

    .user-message .message-content {
        max-width: 80%;
    }

    .user-message p {
        background: #0d6efd;
        color: white;
        border-radius: 16px 4px 16px 16px;
    }

    /* Suggestions */
    .chat-suggestions {
        padding: 10px 15px;
        display: flex;
        gap: 8px;
        overflow-x: auto;
        background: #f8fafc;
    }

    .chat-suggestions button {
        white-space: nowrap;
        border: 1px solid #e2e8f0;
        background: white;
        border-radius: 20px;
        padding: 8px 12px;
        font-size: 12px;
        cursor: pointer;
        color: #475569;
    }

    /* Input */
    .chat-input-area {
        display: flex;
        gap: 10px;
        padding: 15px;
        border-top: 1px solid #f1f5f9;
        background: white;
    }

    .chat-input-area input {
        flex: 1;
        border: none;
        outline: none;
        background: #f1f5f9;
        padding: 12px 15px;
        border-radius: 25px;
        font-size: 14px;
    }

    #chat-send {
        width: 42px;
        height: 42px;
        border: none;
        border-radius: 50%;
        background: #0d6efd;
        color: white;
        cursor: pointer;
        font-size: 18px;
    }

    .chat-footer {
        text-align: center;
        font-size: 10px;
        color: #94a3b8;
        padding: 8px;
        background: white;
    }

.service-offer-card {
    width: 100%;
    padding:10px 10px 3px 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.offer-delivery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 15px;
    margin-bottom: 22px;
    background: #eff6ff;
    color: #1769e0;
    border-radius: 50px;
    font-size: 15px;
}

.delivery-icon {
    font-size: 17px;
}

.service-offer-card h3 {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    color: #475569;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
}

.offer-list li:last-child {
    border-bottom: none;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #e8f5ff;
    color: #0b84ff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}
.services-content{
      width:66%;
}
.services-content img{
     width: stretch;
    float: left;
}
.services-layout {
    display:flex;
    width: 79%;
    margin: auto;
}
.project-cta-simple {
        width: 100%;
    max-width: 1200px;
    margin: 30px auto 45px;
    padding: 25px 30px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #0b84ff;
}

.project-cta-price {
    display: inline-block;
    margin-top: 8px;

    color: #475569;
    font-size: 13px;
    font-weight: 600;
}
/* TEXTE */

.project-cta-info {
    min-width: 0;
}

.project-cta-label {
    display: block;

    margin-bottom: 7px;

    color: #0b84ff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-cta-simple h2 {
    margin: 0;

    color: #172033;

    font-size: 22px;
    line-height: 1.35;
    font-weight: 600;
}

.project-cta-simple h2 strong {
    color: #0b84ff;
    font-weight: 700;
}

.project-cta-simple p {
    margin: 7px 0 0;

    color: #64748b;

    font-size: 13px;
}


/* BOUTON */

.project-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    gap: 10px;

    padding: 11px 18px;

    color: #0b84ff;
    background: #ffffff;

    border: 1px solid #bfdbfe;
    border-radius: 8px;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.2s ease;
}

.project-cta-link span {
    font-size: 18px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.project-cta-link:hover {
    background: #0b84ff;
    color: #ffffff;

    border-color: #0b84ff;
}

.project-cta-link:hover span {
    transform: translateX(4px);
}


/* TABLETTE */

@media (max-width: 800px) {

    .project-cta-simple {
        padding: 22px 24px;

        gap: 20px;
    }

    .project-cta-simple h2 {
        font-size: 19px;
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .project-cta-simple {
        flex-direction: column;
        align-items: flex-start;

        margin: 25px auto 35px;
        padding: 22px 20px;

        gap: 16px;
    }

    .project-cta-simple h2 {
        font-size: 18px;
    }

    .project-cta-simple p {
        font-size: 12px;
    }

    .project-cta-link {
        width: 100%;
        box-sizing: border-box;
    }

}

    /* Mobile */
    @media (max-width: 500px) {
        .chat-window {
            right: 10px;
            left: 10px;
            bottom: 90px;
            width: auto;
            height: 70vh;
        }

        .chat-toggle {
            right: 18px;
            bottom: 18px;
        }
    }
/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .services-layout {
        display: flex;
        flex-direction: column;

        gap: 30px;
    }

    .services-content {
        width: 100%;
    }

    .services-sidebar {
        width: 100%;
    }

    .service-offer-card {
        max-width: 100%;
        padding: 24px 20px;

        border-radius: 16px;
    }

    .offer-delivery {
        width: 100%;

        justify-content: center;

        text-align: center;

        border-radius: 12px;
    }

    .service-offer-card h3 {
        font-size: 21px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .service-offer-card {
        padding: 20px 16px;
    }

    .offer-delivery {
        font-size: 13px;
    }

    .offer-list li {
        font-size: 13px;
        gap: 9px;
    }

    .check-icon {
        flex: 0 0 20px;

        width: 20px;
        height: 20px;
    }

}
/* =========================
   Language Switcher
   ========================= */

.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    background: rgba(5, 25, 65, 0.85);
    border: 1px solid rgba(0, 190, 255, 0.45);
    border-radius: 30px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 5px;

    color: #ffffff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    padding: 5px 8px;
    border-radius: 20px;

    transition: all 0.25s ease;
}

.lang-option:hover {
    background: rgba(0, 190, 255, 0.18);
    color: #35d9ff;
}

.lang-option.active {
    background: linear-gradient(135deg, #00bfff, #087cff);
    color: #ffffff;

    box-shadow: 0 3px 10px rgba(0, 150, 255, 0.35);
}

.lang-flag {
    font-size: 15px;
    line-height: 1;
}

.lang-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Mobile */
@media (max-width: 600px) {
    .language-switcher {
        top: 12px;
        right: 12px;
        padding: 5px 8px;
        gap: 4px;
    }

    .lang-option {
        padding: 4px 6px;
        font-size: 12px;
    }

    .lang-flag {
        font-size: 14px;
    }
}