/**
 * Styles pour le bloc "Nos valeurs"
 * Design moderne avec fond violet et effets géométriques CSS
 */

.nos-valeurs-block {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.nos-valeurs-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    
    /* Fond violet GRIM principal */
    background: #6646ff;
    
    /* Dégradés superposés avec la palette GRIM */
    background-image: 
        /* Dégradé principal avec violet GRIM */
        linear-gradient(135deg, #6646ff 0%, #4d2db8 50%, #331a7a 100%),
        /* Cercles lumineux avec violet GRIM */
        radial-gradient(circle at 15% 20%, rgba(102, 70, 255, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(102, 70, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    
    /* Bordure avec violet GRIM */
    border: 1px solid rgba(102, 70, 255, 0.3);
    
    /* Coins arrondis */
    border-radius: 12px;
    
    /* Ombre portée avec violet GRIM */
    box-shadow: 
        0 25px 50px rgba(102, 70, 255, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Forme organique 1 - Blob fluide en haut à droite */
.nos-valeurs-container::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -20px;
    width: 180px;
    height: 140px;
    background: radial-gradient(ellipse at 30% 40%, rgba(102, 70, 255, 0.4) 0%, rgba(102, 70, 255, 0.2) 50%, transparent 80%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(15deg) scale(1.1);
    z-index: 0;
    opacity: 0.6;
}

/* Forme organique 2 - Blob fluide en bas à gauche */
.nos-valeurs-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 160px;
    background: linear-gradient(45deg, rgba(102, 70, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(102, 70, 255, 0.2) 100%);
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    transform: rotate(-25deg) skew(5deg, -5deg);
    z-index: 0;
    opacity: 0.5;
}

/* Formes organiques supplémentaires - Bulles fluides */
.nos-valeurs-container {
    overflow: hidden;
}

.nos-valeurs-container .nos-valeurs-content::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -50px;
    width: 90px;
    height: 70px;
    background: radial-gradient(ellipse at 40% 60%, rgba(102, 70, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 80%);
    border-radius: 50% 30% 60% 40% / 40% 60% 30% 70%;
    transform: translateY(-50%) rotate(35deg);
    z-index: -1;
    opacity: 0.7;
}

.nos-valeurs-container .nos-valeurs-content::after {
    content: '';
    position: absolute;
    top: 70%;
    left: -30px;
    width: 60px;
    height: 80px;
    background: conic-gradient(from 180deg at 50% 20%, rgba(102, 70, 255, 0.15), transparent, rgba(255, 255, 255, 0.08));
    border-radius: 70% 30% 50% 50% / 30% 40% 60% 70%;
    transform: translateY(-50%) rotate(-40deg) scale(0.8);
    z-index: -1;
    opacity: 0.5;
}

.nos-valeurs-content {
    text-align: left;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    z-index: 2;
}

/* Accroche */
.nos-valeurs-accroche {
    margin-bottom: 2rem;
    line-height: 1.3;
}

.accroche-line {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.accroche-valeurs {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mot-clé principal RESPECT */
.nos-valeurs-keyword {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 0.9;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* Liste des valeurs */
.nos-valeurs-liste {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.valeur-item {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
    line-height: 1.2;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.valeur-item:hover {
    opacity: 1;
}

/* Espacement spécial pour les dernières lignes */
.valeur-item.special-spacing {
    letter-spacing: 0.1em;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nos-valeurs-container {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .accroche-line,
    .accroche-valeurs {
        font-size: 1.125rem;
    }
    
    .nos-valeurs-keyword {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .valeur-item {
        font-size: 1.125rem;
    }
    
    .nos-valeurs-liste {
        gap: 0.5rem;
    }
}

/* Responsive - Très petit écran */
@media (max-width: 480px) {
    .nos-valeurs-container {
        padding: 2rem 1rem;
        margin: 0 0.5rem;
    }
    
    .nos-valeurs-keyword {
        font-size: 2.5rem;
    }
    
    .valeur-item {
        font-size: 1rem;
    }
    
    .accroche-line,
    .accroche-valeurs {
        font-size: 1rem;
    }
    
    /* Réduction des effets géométriques sur mobile */
    .nos-valeurs-container::before,
    .nos-valeurs-container::after {
        display: none;
    }
}