* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #080812 0%, #3e108b 100%);
            color: white;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(8, 8, 18, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #cf34e2;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background-image: url('../images/webdesign.jpg');
            background-size: cover;
            background-position: left center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #080812 0%, #3e108b 100%);
            opacity: 0.7;
            z-index: 1;
        }

        .hero-content {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-50%);
            max-width: 450px;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .highlight {
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .location {
            font-size: 1.1rem;
            color: #cf34e2;
            margin-bottom: 30px;
        }

        .cta-button {
            background: linear-gradient(45deg, #cf34e2, #a206b6);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(207, 52, 226, 0.3);
        }

        /* Floating elements */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 2;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape1 {
            width: 200px;
            height: 200px;
            background: #cf34e2;
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .shape2 {
            width: 150px;
            height: 150px;
            background: #0f5aee;
            bottom: 30%;
            right: 20%;
            animation-delay: 2s;
        }

        .shape3 {
            width: 100px;
            height: 100px;
            background: #a206b6;
            top: 50%;
            right: 5%;
            animation-delay: 4s;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.05);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            opacity: 0.8;
            margin-bottom: 60px;
        }

        /* Nouvelle structure en piliers */
        .services-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .pillar {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            padding: 40px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .pillar:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .pillar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
        }

        .pillar-header {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .pillar-icon {
            font-size: 3rem;
            margin-right: 20px;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            border-radius: 15px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(207, 52, 226, 0.2);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .pillar:hover .pillar-icon {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(207, 52, 226, 0.4);
        }

        .pillar-info {
            flex: 1;
        }

        .pillar-title {
            font-size: 1.8rem;
            color: #cf34e2;
            margin-bottom: 10px;
        }

        .pillar-subtitle {
            opacity: 0.8;
            font-size: 1rem;
            line-height: 1.4;
        }

        .services-list {
            list-style: none;
            margin-top: 20px;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding-left: 10px;
        }

        .service-item:last-child {
            border-bottom: none;
        }

        .service-bullet {
            color: #cf34e2;
            font-size: 1.2rem;
            margin-right: 15px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .service-name {
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .service-description {
            opacity: 0.7;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        /* Section processus */
        .process-section {
            margin-top: 80px;
            padding: 60px 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 30px;
        }

        .process-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .process-subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 40px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .process-step {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #cf34e2;
        }

        .step-description {
            opacity: 0.8;
            line-height: 1.5;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .contact p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .contact-item span {
            color: #cf34e2;
        }

        /* Footer */
        footer {
            background: #080812;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            background: linear-gradient(45deg, #cf34e2, #0f5aee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #cf34e2;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(-50%);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                right: 5%;
                left: 5%;
                max-width: none;
                text-align: center;
                transform: translateY(-50%);
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .services-pillars {
                grid-template-columns: 1fr;
            }
            
            .pillar-header {
                flex-direction: column;
                text-align: center;
            }
            
            .pillar-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .process-section {
                padding: 40px 20px;
            }
        }
		
		  .grid-insight {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .insight-block {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid #cf34e2;
            transition: background 0.3s ease;
        }
        .insight-block:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        .insight-block h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #cf34e2;
        }
        .insight-block p {
            font-size: 1rem;
            line-height: 1.5;
            opacity: 0.9;
        }
        .timeline-section {
            margin-top: 80px;
            padding: 60px 0;
        }
        .timeline {
            position: relative;
            margin-left: 20px;
            border-left: 3px solid #cf34e2;
            padding-left: 20px;
        }
        .timeline-step {
            margin-bottom: 40px;
        }
        .timeline-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #cf34e2;
        }
        .timeline-step p {
            font-size: 1rem;
            line-height: 1.5;
        }
        .article-section {
            margin-top: 100px;
        }
        .article-block {
            background: rgba(255,255,255,0.05);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 60px;
        }
        .article-block h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #cf34e2;
        }
        .article-block p {
            font-size: 1.1rem;
            line-height: 1.6;
        }
        .illustration-space {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    padding: 20px;
    overflow: hidden;
}

.illustration-space img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto; /* ← AJOUTEZ CETTE LIGNE */
}

.illustration-space img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .illustration-space {
        padding: 15px;
        margin: 30px 0;
    }
    
    .illustration-space img {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .illustration-space {
        padding: 10px;
        margin: 25px 0;
    }
}
		
		.harmonisierung {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 60px 40px;
  margin-top: 60px;
}

.harmonisierung-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #cf34e2;
}

.harmonisierung-intro {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.85;
}

.harmonisierung-list {
  list-style: none;
  padding-left: 0;
}

.harmonisierung-list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}

.harmonisierung-list li::before {
  content: \"●\";
  position: absolute;
  left: 0;
  color: #cf34e2;
  font-size: 1.2rem;
  top: 0.1em;
}

    .icon {
            width: 24px;
            height: 24px;
            display: inline-block;
            vertical-align: middle;
            margin-right: 8px;
        }
        
        .pillar-icon .icon {
            width: 32px;
            height: 32px;
        }
        
        .contact-item .icon {
            width: 20px;
            height: 20px;
            margin-right: 12px;
        }
		
		
		
		  .icon {
      width: 24px;
      height: 24px;
      display: inline-block;
      vertical-align: middle;
      margin-right: 8px;
    }
    
    .contact-item .icon {
      width: 20px;
      height: 20px;
      margin-right: 12px;
    }

    .insight-block-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .insight-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(45deg, #cf34e2, #0f5aee);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .insight-icon .icon {
      width: 24px;
      height: 24px;
      margin: 0;
    }

    .article-block-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .article-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(45deg, #cf34e2, #0f5aee);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .article-icon .icon {
      width: 28px;
      height: 28px;
      margin: 0;
    }

    .tech-list {
      list-style: none;
      padding: 0;
      margin-top: 15px;
    }

    .tech-list li {
      display: flex;
      align-items: center;
      padding: 8px 0;
      font-size: 1rem;
      line-height: 1.4;
    }

    .tech-list .icon {
      width: 20px;
      height: 20px;
      margin-right: 12px;
      color: #cf34e2;
    }

    /* Citation du gérant */
    .ceo-quote-section {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      padding: 50px 40px;
      margin: 80px 0;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
    }

    .ceo-quote-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(45deg, #cf34e2, #0f5aee);
      border-radius: 25px 25px 0 0;
    }

    .ceo-quote-container {
      display: flex;
      align-items: center;
      gap: 40px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .ceo-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #cf34e2;
      box-shadow: 0 10px 30px rgba(207, 52, 226, 0.3);
      flex-shrink: 0;
    }

    .ceo-quote-content {
      flex: 1;
    }

    .quote-text {
      font-size: 1.3rem;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 20px;
      position: relative;
      padding-left: 30px;
    }

    .quote-text::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 3rem;
      color: #cf34e2;
      font-family: serif;
    }

    .quote-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .author-info h4 {
      font-size: 1.2rem;
      color: #cf34e2;
      margin-bottom: 5px;
    }

    .author-info p {
      opacity: 0.8;
      font-size: 1rem;
    }

    @media (max-width: 768px) {
      .ceo-quote-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
      }

      .ceo-photo {
        width: 100px;
        height: 100px;
      }

      .quote-text {
        font-size: 1.1rem;
        padding-left: 25px;
      }

      .quote-text::before {
        font-size: 2.5rem;
        top: -5px;
      }

      .ceo-quote-section {
        padding: 40px 25px;
        margin: 60px 0;
      }
    }
	
	
	/* Section intro attractive */
.intro-hero {
    background: linear-gradient(135deg, rgba(207, 52, 226, 0.1) 0%, rgba(15, 90, 238, 0.1) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 40px 0 80px 0;
    border: 1px solid rgba(207, 52, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.intro-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 25px 25px 0 0;
}

.intro-title {
    display: flex;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #cf34e2;
}

.intro-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: #cf34e2;
}

.intro-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.highlight-text {
    color: #cf34e2;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #cf34e2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.4;
}

/* CTA d'urgence */
.urgency-cta {
    background: rgba(207, 52, 226, 0.1);
    border: 2px solid #cf34e2;
    border-radius: 20px;
    padding: 30px;
    margin: 60px 0;
    text-align: center;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.urgency-icon {
    width: 50px;
    height: 50px;
    color: #cf34e2;
    flex-shrink: 0;
}

.urgency-text {
    flex: 1;
    min-width: 250px;
}

.urgency-text h4 {
    font-size: 1.5rem;
    color: #cf34e2;
    margin-bottom: 8px;
}

.urgency-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.urgency-button {
    background: linear-gradient(45deg, #cf34e2, #a206b6);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.urgency-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 52, 226, 0.4);
}

/* Améliorations des icônes existantes */
.insight-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.insight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.insight-icon .icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

.timeline-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.timeline-icon .icon {
    width: 20px;
    height: 20px;
    margin: 0;
}

.article-block-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.article-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.article-icon .icon {
    width: 28px;
    height: 28px;
    margin: 0;
}

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .intro-hero {
        padding: 30px 25px;
        margin: 30px 0 60px 0;
    }

    .intro-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
    }

    .intro-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .intro-description {
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .urgency-content {
        flex-direction: column;
        gap: 20px;
    }

    .urgency-text {
        min-width: auto;
    }
}





/* Section ACTIDATA */
.actidata-highlight {
    background: linear-gradient(135deg, rgba(15, 90, 238, 0.1) 0%, rgba(207, 52, 226, 0.1) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 80px 0;
    border: 1px solid rgba(15, 90, 238, 0.2);
    position: relative;
    overflow: hidden;
}

.actidata-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #0f5aee, #cf34e2);
    border-radius: 25px 25px 0 0;
}

.actidata-title {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #0f5aee;
}

.actidata-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: #0f5aee;
}

.actidata-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.actidata-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature .icon {
    width: 24px;
    height: 24px;
    color: #0f5aee;
    margin: 0;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Section SOFTI */
.softi-highlight {
    background: linear-gradient(135deg, rgba(207, 52, 226, 0.08) 0%, rgba(162, 6, 182, 0.08) 100%);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 80px 0;
    border: 1px solid rgba(207, 52, 226, 0.15);
    position: relative;
    overflow: hidden;
}

.softi-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #cf34e2, #a206b6);
    border-radius: 25px 25px 0 0;
}

.softi-title {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #cf34e2;
}

.softi-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    color: #cf34e2;
}

.softi-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.softi-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.softi-features .feature .icon {
    color: #cf34e2;
}

/* Screenshot section pour SOFTI */
.softi-screenshot {
    margin-top: 50px;
}

.screenshot-title {
    font-size: 1.5rem;
    color: #22c55e;
    margin-bottom: 20px;
    text-align: center;
}

.screenshot-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.screenshot-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.screenshot-image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(34, 197, 94, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.screenshot-container:hover .screenshot-overlay {
    opacity: 1;
    background: rgba(34, 197, 94, 0.2);
}

.play-icon {
    width: 60px;
    height: 60px;
    color: #22c55e;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.screenshot-container:hover .play-icon {
    transform: scale(1.1);
    background: white;
}

.screenshot-overlay span {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
}

.screenshot-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1rem;
    opacity: 0.8;
    font-style: italic;
}

@media (max-width: 768px) {
    .actidata-highlight,
    .softi-highlight {
        padding: 30px 25px;
        margin: 60px 0;
    }

    .actidata-title,
    .softi-title {
        font-size: 1.8rem;
        flex-direction: column;
        text-align: center;
    }

    .actidata-icon,
    .softi-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .actidata-description,
    .softi-description {
        font-size: 1.1rem;
    }

    .actidata-features,
    .softi-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .screenshot-container {
        max-width: 100%;
    }

    .screenshot-image {
        max-height: 300px;
    }

    .screenshot-title {
        font-size: 1.3rem;
    }

    .play-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }

    .screenshot-overlay span {
        font-size: 1rem;
        padding: 6px 12px;
    }
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.03);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #cf34e2;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #cf34e2;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.faq-answer strong {
    color: #cf34e2;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 25px 20px 25px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}


/* Boutons produits */
.product-cta {
    text-align: center;
    margin-top: 30px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.actidata-button {
    background: linear-gradient(45deg, #0f5aee, #1e7fff);
    color: white;
    border-color: #0f5aee;
}

.actidata-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 90, 238, 0.4);
    background: linear-gradient(45deg, #1e7fff, #0f5aee);
}

.softi-button {
    background: linear-gradient(45deg, #cf34e2, #a206b6);
    color: white;
    border-color: #cf34e2;
}

.softi-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(207, 52, 226, 0.4);
    background: linear-gradient(45deg, #a206b6, #cf34e2);
}

.product-button .icon {
    width: 20px;
    height: 20px;
    margin: 0;
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
    .product-button {
        padding: 12px 25px;
        font-size: 1rem;
        gap: 8px;
    }
    
    .product-button .icon {
        width: 18px;
        height: 18px;
    }
}

/* Badge d'expérience depuis 2011 */
.experience-badge {
    background: linear-gradient(135deg, rgba(207, 52, 226, 0.15) 0%, rgba(15, 90, 238, 0.15) 100%);
    border: 2px solid rgba(207, 52, 226, 0.3);
    border-radius: 20px;
    padding: 25px 30px;
    margin: 40px auto 60px auto;
    max-width: 600px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.experience-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 20px 20px 0 0;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #cf34e2, #0f5aee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(207, 52, 226, 0.3);
}

.badge-icon .icon {
    width: 30px;
    height: 30px;
    margin: 0;
    color: white;
}

.badge-text {
    flex: 1;
    text-align: left;
}

.badge-text h3 {
    font-size: 1.5rem;
    color: #cf34e2;