/**
 * Section 2 - Le Premier Site Vitrine Sans Frais de Création
 * Layout exact selon l'image fournie : personnage à gauche, texte à droite, espacement serré
 * Ajout de plus d'espace entre le titre/sous-titre et la mascotte (margin-bottom augmenté à 100px)
 * Texte de droite décalé un peu plus à droite (padding-left: 30px)
 * Titres des avantages plus en gras (font-weight: 700)
 * Augmentation de la taille de police des textes à droite pour matcher la deuxième capture (titres à 1.25rem, textes à 1.05rem)
 */

.concept-section {
    padding: 80px 0 100px 0;  /* Augmenté le padding-bottom à 100px pour plus d'espace avec la section suivante */
    background: white;
}

.concept__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header centré */
.section__header {
    text-align: center;
    margin-bottom: 100px;  /* Augmenté pour plus d'espace avec la mascotte */
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section__subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-align: center !important;
}

/* Layout principal en 2 colonnes */
.concept__two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;  /* À 0 pour rapprochement maximal */
    align-items: center;
    margin-top: 80px;
}

/* Colonne de gauche - Image du personnage (à gauche) */
.concept__left-column {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 0;  /* Supprimer padding pour serrer */
    margin-top: 10px;  /* Ajout d'un petit margin-top pour baisser légèrement l'image et centrer la tête du bonhomme */
}

.concept__mascot {
    position: relative;
    text-align: center;
}

.concept__halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, rgba(124, 58, 237, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.concept__mascot-img {
    position: relative;
    z-index: 2;
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(124, 58, 237, 0.1));
    margin-right: -30px;  /* Margin négatif pour rapprocher le texte */
}

/* Colonne de droite - Texte et avantages (à droite) */
.concept__right-column {
    padding-left: 30px;  /* Décalage un tout petit peu plus à droite */
    text-align: left;
}

.concept__advantages-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

.concept__advantage {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: none;
    transition: transform 0.2s ease;
}

.concept__advantage:hover {
    transform: translateX(8px);
}

.concept__advantage .icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    color: #7C3AED;
}

.concept__advantage-content {
    flex: 1;
}

.concept__advantage-title {
    font-size: 1.25rem;  /* Un tout petit peu plus grand */
    font-weight: 700;  /* Plus en gras */
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.concept__advantage-text {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 1.05rem;  /* Un tout petit peu plus grand */
}

/* Responsive Design */
@media (max-width: 968px) {
    .concept__two-columns {
        gap: 20px;
    }
    
    .section__title {
        font-size: 2.2rem;
    }
    
    .concept__mascot-img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .concept-section {
        padding: 60px 0 80px 0;
    }
    
    .concept__container {
        text-align: center;
    }
    
    .section__header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section__title {
        font-size: 2rem;
        text-align: center !important;
    }
    
    .section__subtitle {
        font-size: 1.1rem;
        text-align: center !important;
        margin: 0 auto;
    }
    
    .concept__two-columns {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        justify-items: center;
    }
    
    .concept__left-column {
        padding-right: 0;
        text-align: center !important;
        margin-top: 0;
        justify-content: center;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .concept__mascot {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .concept__mascot-img {
        max-width: 250px;
        margin-right: 0 !important;
        margin: 0 auto;
    }
    
    .concept__halo {
        width: 220px;
        height: 220px;
    }
    
    .concept__right-column {
        order: 1;
        padding-left: 0;
        text-align: center !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .concept__advantages-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 32px;
        margin-top: 15px;
        width: 100%;
        max-width: 400px;
    }
    
    .concept__advantage {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .concept__advantage-title {
        font-size: 1.1rem;
    }
    
    .concept__advantage-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .concept-section {
        padding: 30px 15px;
    }
    
    .concept__container {
        padding: 0 15px;
        text-align: center;
    }
    
    .section__header {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .section__title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        text-align: center !important;
    }
    
    .section__subtitle {
        text-align: center !important;
        margin: 0 auto;
    }
    
    .concept__two-columns {
        gap: 5px;
        justify-items: center;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
    
    .concept__left-column {
        width: 100%;
        display: flex;
        justify-content: center;
        order: -1;
        margin-top: -20px;
    }
    
    .concept__left-column {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .concept__mascot {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .concept__mascot-img {
        max-width: 220px;
        margin: 0 auto;
    }
    
    .concept__halo {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(124, 58, 237, 0.03) 50%, transparent 70%);
    }
    
    .concept__right-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .concept__advantages-list {
        gap: 18px;
        width: 100%;
        max-width: 300px;
        align-items: center;
        margin-top: 5px;
    }
    
    .concept__advantage-title {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .concept__advantage-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .concept__advantage {
        max-width: 280px;
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        background: rgba(124, 58, 237, 0.02);
        padding: 16px 12px;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
}