Accueil
Transformez votre entreprise avec l’IA
Agence web experte en intelligence artificielle depuis plus de 10 ans, IIDI intègre l’IA dans tous vos projets digitaux pour des résultats exceptionnels.
Transformez votre présence digitale avec l’IA

<!-- Section Hero avec dégradé -->
<style>
.hero-section {
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
padding: 80px 0;
min-height: 80vh;
display: flex;
align-items: center;
}
.hero-content {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.hero-title {
font-size: 4rem;
font-weight: 700;
margin-bottom: 20px;
line-height: 1.2;
}
.hero-description {
font-size: 1.2rem;
max-width: 600px;
margin-bottom: 40px;
}
.hero-buttons {
display: flex;
gap: 20px;
}
.btn-primary {
background-color: #ffffff;
color: #6a11cb;
padding: 12px 30px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-secondary {
background-color: rgba(255, 255, 255, 0.2);
color: white;
padding: 12px 30px;
border-radius: 5px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
}
.btn-primary:hover {
background-color: #f0f0f0;
transform: translateY(-3px);
}
.btn-secondary:hover {
background-color: rgba(255, 255, 255, 0.3);
transform: translateY(-3px);
}
</style>
<section class="hero-section">
<div class="hero-content">
<h1 class="hero-title">Transformez votre présence digitale avec l'IA</h1>
<p class="hero-description">IIDI est une agence experte en intelligence artificielle qui conçoit des expériences digitales innovantes, personnalisées et performantes pour propulser votre entreprise vers de nouveaux sommets.</p>
<div class="hero-buttons">
<a href="/services" class="btn-primary">Découvrir nos services</a>
<a href="/contact" class="btn-secondary">Nous contacter</a>
</div>
</div>
</section>